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") { diff --git a/docx-wasm/package.json b/docx-wasm/package.json index 55793b9..af5fb03 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -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 ",