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

Popular posts from this blog

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -