Merge pull request #790 from bokuweb/fix-level-char-spacing

Fix level char spacing
main
bokuweb 2024-12-29 23:39:15 +00:00 committed by GitHub
commit 1fd0b8f7f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -319,6 +319,10 @@ export class Docx {
level = level.fonts(f);
}
if (l.runProperty._characterSpacing != null) {
level = level.spacing(l.runProperty._characterSpacing);
}
if (l.paragraphProperty.indent) {
let kind;
if (l.paragraphProperty.indent.specialIndentKind === "firstLine") {

View File

@ -1,6 +1,6 @@
{
"name": "docx-wasm",
"version": "0.4.18-rc26",
"version": "0.4.18-rc27",
"main": "dist/node/index.js",
"browser": "dist/web/index.js",
"author": "bokuweb <bokuweb12@gmail.com>",