Markdown¶
Tips: Markdown¶
Table of Content¶
Convert Markdown to .rst format¶
To convert .md file format to .rst file, this could be done with:
pandoc input.md -f markdown -t rst -o output.rst
Make sure to install the pandoc packages on the system: sudo apt ./pandoc-
-amd64.deb
To convert .rst file into html file to review, use rst2html command:
rst2html input.rst output.html
Resources¶
In markdownguide, illustrate the basic syntax in markdown design, including all tips to do and not to do.