RETIRED, further work has moved to Debian project infrastructure
Go to file
Francesco Mari c06dea7f6b Remove trailing slashes 2012-03-08 21:57:38 +01:00
benchmark Fix undefined sumbol in Python 3 2012-02-06 16:26:34 +01:00
docs Updated documentation and changelogs. 2012-02-07 23:27:10 +01:00
src Print exceptions that are raised in render methods. 2012-02-24 21:56:09 -08:00
vendor Added Sundown submodule. 2012-02-22 01:15:17 -08:00
.gitignore Changed .gitignore. 2012-02-22 00:44:36 -08:00
.gitmodules Added Sundown submodule. 2012-02-22 01:15:17 -08:00
ChangeLog.md Updated change log. 2012-02-26 12:26:58 -08:00
LICENSE.txt Updated version numbers and files. 2011-06-16 18:47:59 +02:00
MANIFEST.in Remove trailing slashes 2012-03-08 21:57:38 +01:00
README.rst Added examples. 2012-02-04 00:09:23 +01:00
THANKS Added thank you file. 2011-08-01 23:27:56 +02:00
setup.py Renamed change log file. 2012-02-26 12:12:52 -08:00

README.rst

Misaka

The Python binding for Sundown, a markdown parsing library.

Documentation can be found at: http://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')