pandoc - Convert markdown to reStructuredtest? -
how can convert file named index.md
restructuredtext fileindex.rst
without manual editing or anything?
how vice-verse?
what general syntax of such changes?
pandoc --from=markdown --to=rst --output=index.rst index.md
for reverse can try pretty same thing
pandoc --from=rst --to=markdown --output=readme.md readme.rst
the general syntax is
pandoc --from={type} --to={type} --output={filename} {input-filename}
Comments
Post a Comment