将markdown转换为reStructuredtest?

时间:2015-06-20 10:34:49

标签: markdown pandoc restructuredtext

如何在不进行手动编辑的情况下将名为index.md的文件转换为reStructuredText文件index.rst

副歌怎么样?

此类更改的一般语法是什么?

1 个答案:

答案 0 :(得分:1)

pandoc --from=markdown --to=rst --output=index.rst index.md

反过来你可以尝试几乎相同的东西

pandoc --from=rst --to=markdown --output=README.md README.rst

一般语法是

pandoc --from={type} --to={type} --output={filename} {input-filename}