markdown to html
initial release
Un paquete Python, diseñado para convertir la sintaxis de GitHub Mark Down en código HTML.
*Nota: Soporte adicional en progreso
python3 -m pip install markdown-to-html
>>> from markdown2html import md
>>> md.markdown("**Hi**")
'n<p><strong>Hi</strong></p>n'
Interfaz de línea de comando
$ 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