外观
pandoc
约 86 字小于 1 分钟
2025-09-19
md 转 word
- https://pandoc.org/installing.html
生成模板文档
## 根据 pandoc 内置的 reference.docx,生成 custom-reference.docx 模板后,自定义修改
pandoc -o custom-reference.docx --print-default-data-file reference.docx
使用模板文档转换
## 使用 reference.docx 模板文件,将 my-document.md 转换为 my-document.docx
pandoc my-document.md --reference-doc=reference.docx -o my-document.docx