gituser/production/: cmarkgfm-0.4.0 metadata and description
Minimal bindings to GitHub's fork of cmark
| author | The Python Packaging Authority |
| author_email | thea@skeletonbuddy.com, pypa-dev@googlegroups.com |
| classifiers |
|
| File | Tox results | History |
|---|---|---|
cmarkgfm-0.4.0.tar.gz
|
|
Minimalist bindings to GitHub’s fork of cmark.
Installation
This package is published as cmarkgfm and can be installed with pip or pipenv:
pip install --user cmarkgfm pipenv install cmarkgfm
Usage
High-level usage is really straightforward. To render normal CommonMark markdown:
import cmarkgfm
html = cmarkgfm.markdown_to_html(markdown_text)
To render GitHub-flavored markdown:
import cmarkgfm
html = cmarkgfm.github_flavored_markdown_to_html(markdown_text)
Contributing
Pull requests are welcome. :)
License
This project is under the MIT License. It includes components under differing copyright under the third_party directory in this source tree.
TODO
Setup automatic wheel building.
Add more tests.