cmarkwrapper
是一个基于paka.cmark的cmark 封装,更加符合使用习惯。
使用 pypi
pip install cmarkwrapper
或使用 git+
pip install git+https://github.com/yangfan9702/cmarkwrapper.git
from cmarkwrapper import markdown_to_html
html = markdown_to_html(
"""
*Italic* _Italic_
**Bold** __Bold__
![image](https://commonmark.org/help/images/favicon.png)
"""
)
print(html)
Documentation is on Read the Docs. Code repository and issue tracker are on GitHub.