Merge pull request #2277 from amir9480/patch-1

Add softhyphen support to Word2007 Reader
This commit is contained in:
Progi1984 2023-01-05 22:04:27 +01:00 committed by GitHub
commit 60734dd7f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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