Pandoc 2 and my workflow
Recently the Pandoc upgrades to Pandoc 2. After struggling with reference for docx in Pandoc, I finally make the workflow elegant. Below is a Makefile that can generate docx from md, where the old docx is used as template. Thus the changed style in the docx is reserved, and you can change the md file to get proper docx file.
The workflow then makes clear:
-
Put the Makefile somewhere, e.g. in
~/
. -
Write something as a markdown file, say
/tmp/answer.md
. -
In the
/tmp/
runmake -f ~/Makefile answer.docx
will generate the .docx file. -
Simply run
make -f ~/Makefile
will convert all the .md files to .docx.
我写了一个Makefile,方便进行.md → .docx
的转换。这个Makefile的优势是可以保留对docx格式的修改,原理是使用老的docx作为模板,这样新文档继承老文档的格式,如果你的修改是对样式而非内容的(修改方法见以前的分享),格式信息会保留。
一个典型的流程是
-
把上面的Makefile保存在本地,比如在
~/
。 -
把.md保存在任意路径,比如
/tmp/answer.md
。 -
在
answer.md
所在目录执行make -f ~/Makefile answer.docx
,生成相应的.docx文件。 -
如果执行
make -f ~/Makefile
则当前目录内所有的.md文件都转为.docx。
或者您可以把评论发在别处,添加指向本页的连接,然后把网址告诉我:
本文标题:Pandoc 2 and my workflow
文章作者:Chris
发布时间:2017-11-09
最后更新:2022-03-23
原始链接:https://chriszheng.science/2017/11/09/Pandoc-2-and-my-workflow/
版权声明:本博客所有文章除特别声明外,均采用 CC BY 4.0 许可协议。转载请注明出处!
分享