最近有一些文章需要从简书上转化过来,
公众号不支持markdown,尝试使用将markdown转化为doc 简介
代码语言:javascript复制package: pandoc
language: python
web: https://pandoc.org/
online: https://pandoc.org/try/
install:conda install -c conda-forge pandoc
command line
代码语言:javascript复制 # HTML fragment:
pandoc MANUAL.txt -o example1.html
# Standalone HTML file:
pandoc -s MANUAL.txt -o example2.html
# HTML with table of contents, CSS, and custom footer:
pandoc -s --toc -c pandoc.css -A footer.html MANUAL.txt -o example3.html
# LaTeX:
pandoc -s MANUAL.txt -o example4.tex
# From LaTeX to markdown:
pandoc -s example4.tex -o example5.text
online模式:
代码语言:javascript复制https://pandoc.org/try/
批量脚本
代码语言:javascript复制import os
file=os.listdir()
for i in file:
command = 'pandoc %s.md -t docx -o %s.docx'%(i.split('.')[0],i.split('.')[0])
print(command)
os.system(command)
以下皆为废话
代码语言:javascript复制