如果您需要将文件从一种标记格式转换为另一种标记格式,那么pandoc
就是您的瑞士军刀。
OpenSource: 总结的快捷键使用文档
1. 格式转换
具体的各种格式之间的转换,请看文末的图谱
2. 安装方式
几乎支持各种操作系统和平台,使用无忧
1 2 3
| brew install pandoc-citeproc brew install librsvg python homebrew/cask/basictex
|
1 2 3 4 5 6
| apt install pandoc apt install pandoc-citeproc
https://packages.ubuntu.com/pandoc
|
1 2 3 4 5 6
| https://github.com/jgm/pandoc/releases/latest
choco install pandoc choco install rsvg-convert python miktex
|
3. 使用方式
转换原来,如此简单 => 官网使用参考地址
1 2 3 4 5 6 7 8 9 10 11
| $ pandoc -s MANUAL.txt -o example29.docx
$ pandoc -s math.tex -o example30.docx
$ pandoc -s m.md -o m.docx
$ pandoc --reference-doc twocolumns.docx -o UsersGuide.docx MANUAL.txt
|
1 2 3 4 5 6 7 8
| $ pandoc README.md -o README.html
$ pandoc README.md -o README.docx
$ pandoc README.md -o README.pdf --latex-engine=xelatex
|
1 2
| $ pandoc MANUAL.epub -t plain -o example36.text
|
1 2 3 4 5
| -V mainfont="SimSun"
$ pandoc -V mainfont="SimSun" --reference-doc twocolumns.docx -o UsersGuide.docx MANUAL.txt
|
本文转载自:「 Escape 的博客 」,原文:http://t.cn/A65f0DtI,版权归原作者所有。欢迎投稿,投稿邮箱: editor@hi-linux.com。