Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 568 Bytes

README.rst

File metadata and controls

37 lines (20 loc) · 568 Bytes

Misaka

https://secure.travis-ci.org/FSX/misaka.png?branch=master

The Python binding for Sundown, a markdown parsing library.

Documentation can be found at: http:https://misaka.61924.nl/

Installation

Cython is needed to compile Misaka.

With pip:

pip install misaka

Or manually:

python setup.py install

Example

Very simple example:

from misaka import Markdown, HtmlRenderer

rndr = HtmlRenderer()
md = Markdown(rndr)

print md.render('some text')