markdown to html
initial release
A Python package, designed to convert the Github mark down syntax to HTML code.
*Note: Additional support in progress
python3 -m pip install markdown-to-html
>>> from markdown2html import md
>>> md.markdown("**Hi**")
'n<p><strong>Hi</strong></p>n'
Command Line Interface
$ md -h
usage: Input a file [-h] [-f F]
optional arguments:
-h, --help show this help message and exit
-f F
$ md -f sample.md > output.html