diff --git a/docx-wasm/js/index.ts b/docx-wasm/js/index.ts index 6b1e729..869461b 100644 --- a/docx-wasm/js/index.ts +++ b/docx-wasm/js/index.ts @@ -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") {