Skip to content

davidnotplay/mpiece

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPiece

Fast and very customizable markdown parser in pure Python.

Features

  • Pure Python. Tested in Python 2.7+, Python 3.3+ and PyPy.
  • Very fast.
  • Customizable. You can add new markdown grammar and modify the output.
  • More. Table, footnotes, fenced code.

Install

Installing mpiece with pip:

$ pip install mpiece

Basic Usage

from mpiece import markdown

md_text = "**Hello world!!!**"
result = markdown(md_text)

print(result)
# output: <p><strong>Hello world!!!</strong></p>

Documentation

Official documentation

About

Customizable and fast Markdown parser in pure Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published