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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -