markdown to html
initial release
Un package Python, conçu pour convertir la syntaxe GitHub Mark Down en code HTML.
* Remarque: support supplémentaire en cours
python3 -m pip install markdown-to-html
>>> from markdown2html import md
>>> md.markdown("**Hi**")
'n<p><strong>Hi</strong></p>n'
Interface de ligne de commande
$ 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