amis2/packages/ooxml-viewer
吴多益 6b749b8b53
feat: Word 支持分页渲染 (#6606)
* 优化分页渲染的支持

* 补充一些注释

* 补充单元测试

* 优化单元测试,减少样式冗余
2023-04-13 21:11:02 +08:00
..
__tests__ feat: Word 支持分页渲染 (#6606) 2023-04-13 21:11:02 +08:00
examples feat: Word 支持分页渲染 (#6606) 2023-04-13 21:11:02 +08:00
src feat: Word 支持分页渲染 (#6606) 2023-04-13 21:11:02 +08:00
tools feat: office viewer 支持显示形状 (#6585) 2023-04-12 19:08:22 +08:00
.gitignore feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509) 2023-04-03 12:53:44 +08:00
index.html feat: Word 支持分页渲染 (#6606) 2023-04-13 21:11:02 +08:00
package.json feat: office viewer 支持显示形状 (#6585) 2023-04-12 19:08:22 +08:00
README.md feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509) 2023-04-03 12:53:44 +08:00
rollup.config.js feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509) 2023-04-03 12:53:44 +08:00
tsconfig-for-declaration.json feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509) 2023-04-03 12:53:44 +08:00
tsconfig.json feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509) 2023-04-03 12:53:44 +08:00

说明

原理

docx 渲染器,原理是将 docx 里的 xml 格式转成 html

相对于 Canvas 渲染,这个实现方案比较简单,最终页面也可以很方便复制,但无法保证和原始 docx 文件展现一致,因为有部分功能难以在 HTML 中实现,比如图文环绕效果。

已知不支持的功能

参考资料

日常开发可以使用 OOXML viewer 插件查看

开发过程啊参考了