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 AppVeyor Status codecov Codacy Badge

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

Marko requires Python2.7, Python 3.5 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 CommonMark's spec. It is a good reason for me to develop a new markdown parser.

Respecting that Marko complies 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 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 FootnoteExtension
# Add footnote extension
markdown = Markdown(extensions=[FootnoteExtension])
# Alternatively you can register an extension later
markdown.use(FootnoteExtension)

Marko is shipped with 3 extensions: marko.ext.toc.TocExtension, marko.ext.footnote.FootnoteExtension, marko.ext.pangu.PanguExtension. 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-0.7.1.tar.gz (30.7 kB view details)

Uploaded Source

Built Distribution

marko-0.7.1-py2.py3-none-any.whl (33.9 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: marko-0.7.1.tar.gz
  • Upload date:
  • Size: 30.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5

File hashes

Hashes for marko-0.7.1.tar.gz
Algorithm Hash digest
SHA256 0168b0c1fe828fcb7d8172b6fe7abb475fe3552c277e4dd62fc8f24483a0f700
MD5 e1a9a64237a61029cfb81c2c80a46adc
BLAKE2b-256 7c8908b1e72183afad0f0acecec677615b88b13ebb242604a3f90d1eb5c36932

See more details on using hashes here.

Provenance

File details

Details for the file marko-0.7.1-py2.py3-none-any.whl.

File metadata

  • Download URL: marko-0.7.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.5

File hashes

Hashes for marko-0.7.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6866c160f8aa0113b017d03640a8854a87657a4b023792b8de830e335d579168
MD5 98bcea739147186f88ea6a1f5c38d404
BLAKE2b-256 5b8912f1d83850aac635c3beae83af566ba9ab58b14b3948f352fcbbc74f8b0b

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