A markdown parser with high extensibility.
Project description
Marko
A markdown parser with high extensibility.
Marko is a markdown parser written in pure Python that complies CommonMark's spec v0.28. It is designed to be highly extensible, see Extend Marko for details.
Marko requires Python 3.4 or higher, Python 2.7 support is still in plan but I guess it is not needed.
Why Marko
Among all implementations of Python's markdown parser, it is a common issue that user can't easily extend it to add his own features. Furthermore, Python-Markdown and mistune don't comply CommonMark's spec. It is a good reason for me to develop a new markdown parser and use it.
Respecting that Marko complies CommonMark's spec at the same time, which is a super complicated spec, Marko's performance will be affected. A benchmark result shows that Marko is 3 times slower than Python-Markdown, but a bit faster than Commonmark-py, much slower than mistune. If performance is a bigger concern to you than spec compliance, you's better choose another parser.
Use Marko
The installation is very simple:
$ pip install marko
And to use it:
from marko import Markdown
markdown = Markdown()
print(markdown(text))
Marko also provides a simple CLI, for example, to render a document and output to a html file:
$ cat my_article.md | marko > my_article.html
Extend Marko
Please refer to Document
License
Marko is released under MIT License
Change Log
- v0.3.0: Footnote, TOC, pangu extensions
- v0.2.0: Github flavored markdown and docs.
- v0.1.0: Commonmark spec tests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for marko-0.3.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e9189026ba7753fb3e12d366d99f8e12774e2635b2ce255b473efbeebf62cbd |
|
MD5 | c49a971118efd7435ac8cc7e34d59abf |
|
BLAKE2b-256 | fac119caf62a94759634b55cdfc9eca9a822d73dad683f8d7002334d437a91ab |