remarkdown
remarkdown copied to clipboard
A markdown parser for docutils
I installed both Parsley (as a dependency) and ReMarkdown using a GitHub ZIP archive for each (`pip3 install` fetched an erroneous Parsley version, unsuitable for Python 3, so I used...
[Multi Markdown](http://fletcherpenney.net/multimarkdown/) is a nice extension on Markdown. It should be easy to some aspect of its syntax to remarkdown, as it also uses a PEG as its parser: https://github.com/fletcher/peg-multimarkdown
``` time md2html README.md > /dev/null real 0m1.260s user 0m1.212s sys 0m0.043s ``` ``` time rst2html.py README.rst > /dev/null real 0m0.173s user 0m0.148s sys 0m0.022s ``` ``` time markdown_py README.md...
This is not working yet. It needs issue #2 to be solved in order to be done properly.
The power of docutils (and by extension rst) is in its interpreted text, directives and substitution. Markdown does not have anything comparable (which lead to the many different dialects that...
For instance ``` * one * two 1. one 2. two ``` does not render well
docutils does generate html that is not "pure", while markdown syntax is defined as creating some specific html. Also, the tests that exist are based on the html syntax that...