RETIRED, further work has moved to Debian project infrastructure
Go to file
Frank Smit 30669eaee6 Use command line tidy tool. 2012-04-06 15:09:16 +02:00
benchmark Fix undefined sumbol in Python 3 2012-02-06 16:26:34 +01:00
docs Replaced documentation with something more simple. 2012-04-04 20:55:51 +02:00
scripts Added tests. 2012-04-05 23:53:25 +02:00
src SmartyPants now accepts byte and unicode strings. 2012-04-04 21:01:48 +02:00
tests Use command line tidy tool. 2012-04-06 15:09:16 +02:00
vendor Update Sundown files. 2012-03-30 00:17:01 +02:00
.gitignore Added TravisCI file. 2012-04-04 21:25:53 +02:00
.gitmodules Added Sundown submodule. 2012-02-22 01:15:17 -08:00
.travis.yml Use command line tidy tool. 2012-04-06 15:09:16 +02:00
ChangeLog.md Update Sundown files. 2012-03-29 23:40:06 +02: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 Updated Changelog. 2012-03-08 22:12:44 +01:00
setup.py Added tests. 2012-04-05 23:53:25 +02: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')