Skip to main content

A markdown parser with high extensibility.

Project description

𝓜𝓪𝓻𝓴𝓸

A markdown parser with high extensibility.

PyPI PyPI - Python Version Documentation Status CommonMark Spec

Build Status codecov Codacy Badge

Marko is a markdown parser written in pure Python that complies with CommonMark's spec v0.30. It is designed to be highly extensible, see Extensions for details.

Marko requires Python 3.7 or higher.

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 with CommonMark's spec. It is a good reason for me to develop a new markdown parser.

Respecting that Marko complies with CommonMark's spec at the same time, which is a super complicated spec, Marko's performance will be affected. However, using a parser which doesn't comply with the CommonMark spec may give you unexpected rendered results from time to time. 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'd better choose another parser.

Use Marko

The installation is very simple:

$ pip install marko

And to use it:

import marko

print(marko.convert(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

Extensions

It is super easy to use an extension:

from marko import Markdown
from marko.ext.footnote import Footnote
# Add footnote extension
markdown = Markdown(extensions=[Footnote])
# Or you can just:
markdown = Markdown(extensions=['footnote'])
# Alternatively you can register an extension later
markdown.use(Footnote)

An example of using an extension with the command-line version of Marko:

$ cat this_has_footnote.txt | marko -e footnote > hi_world.html

Marko is shipped with 4 extensions: 'footnote', 'toc' 'pangu', 'codehilite'. They are not included in CommonMark's spec but are common in other markdown parsers.

Marko also provides a Github flavored markdown parser which can be found at marko.ext.gfm.gfm.

Please refer to Extend Marko about how to write your own extension.

License

Marko is released under MIT License

Change Log

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

marko-1.3.1.tar.gz (141.0 kB view details)

Uploaded Source

Built Distribution

marko-1.3.1-py3-none-any.whl (39.9 kB view details)

Uploaded Python 3

File details

Details for the file marko-1.3.1.tar.gz.

File metadata

  • Download URL: marko-1.3.1.tar.gz
  • Upload date:
  • Size: 141.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.16

File hashes

Hashes for marko-1.3.1.tar.gz
Algorithm Hash digest
SHA256 6f10dec07eaf098e22554d851b88251167bbc38d214a5ef74b733e62d9da7bbe
MD5 492125387bc8d59018367fbcb998d146
BLAKE2b-256 51a60400db6f337e5b72b87def839ce448b05c5495c225fdc3b9e5fe6d19d4bd

See more details on using hashes here.

Provenance

File details

Details for the file marko-1.3.1-py3-none-any.whl.

File metadata

  • Download URL: marko-1.3.1-py3-none-any.whl
  • Upload date:
  • Size: 39.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.16

File hashes

Hashes for marko-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 63db9728c7e6a072c5dc835ff5a9afd774afc19d4aad968fe403787355bac0c9
MD5 9627fc6df5a7186a2f204c4241bb9981
BLAKE2b-256 41158732bc866ca2eb13c2166fa358786e3f7f7964fc73189b0b96a80150a07a

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page