Bindings for the MD4C markdown parser.
pip3 install md4c
import md4c
parser = md4c.Html()
with open('some/doc.md') as file:
data = file.read()
html = parser.get(data)
with open('some/index.html', 'w') as file:
file.write(html)
Bindings for the MD4C markdown parser.
pip3 install md4c
import md4c
parser = md4c.Html()
with open('some/doc.md') as file:
data = file.read()
html = parser.get(data)
with open('some/index.html', 'w') as file:
file.write(html)