Add softhyphen support to word reader

This commit is contained in:
amir 2022-08-12 14:38:49 +04:00 committed by GitHub
parent 4dc34d43d8
commit 26757c29bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -327,6 +327,8 @@ abstract class AbstractPart
$element->setChangeInfo($type, $author, $date); $element->setChangeInfo($type, $author, $date);
} }
} }
} elseif ($node->nodeName=='w:softHyphen') {
$element=$parent->addText("\u{200c}", $fontStyle, $paragraphStyle);
} }
} }