文档文件格式转换
# 快速开始
pandoc ./pandoc-lab/demo.ipynb -f ipynb -t markdown -o ./pandoc-lab/demo.md -t gfm
pandoc ./1.pdf -f pdf -t docx -o ./1.docx
./pandoc-lab/demo.ipynb原始文件路径-f原文件格式-t目标文件格式-o目标文件路径-t gfmGithub-Flavored Markdown 类型 markdown- markdown-variants - Pandoc User’s Guide: https://pandoc.org/MANUAL.html#markdown-variants
# 更多技巧
- 进入用户手册: https://pandoc.org/MANUAL.html
- (PDF 版本): https://pandoc.org/MANUAL.pdf
- 在 zip 压缩包中有 html 版本的用户手册
- 搜索原文件格式,查看相关配置以及注意事项
- 搜索目标文件格式,查看相关配置以及注意事项
# 相关链接
- Pandoc - About pandoc: https://pandoc.org/index.html
- jgm/pandoc - GitHub: https://github.com/jgm/pandoc
- 用户手册 Pandoc - Pandoc User’s Guide: https://pandoc.org/MANUAL.html
