Mac ---- markdown 转 html\\word\\pdf

如果只是临时用一下,不想购买,你可以使用pandoc。

在mac下,使用方法如下:

brew install pandoc

 

pandoc -f markdown -t html ./test.md | pandoc -f html -t docx -o output.docx

1、安装pandoc,

2、先从md成html

3、再从html成word

如果想转PDF,还要安装latex (https://www.latex-project.org/) 不过只要安装basicTex就可以了,只有100M多。

 

pandoc -f markdown_github 00_tables.md -o test.pdf --latex-engine=xelatex -V mainfont="SimSun"

 

或者转doc

pandoc -f markdown -t docx ./test.md -o test.docx

如果使用GitHub风格markdown语法,可用下面命令转换:
pandoc -f markdown_github -t docx ./test.md -o test.docx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwdzsz.html