RETIRED, further work has moved to Debian project infrastructure
Go to file
Frank Smit a75a5ec9df Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
benchmark Fix undefined sumbol in Python 3 2012-02-06 16:26:34 +01:00
docs Added fixed small issue in docs. 2013-06-03 16:45:44 +02:00
misaka Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
scripts Update Sundown. 2013-04-11 13:44:42 +02:00
src Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
tests Add test command to setup.py. 2012-11-20 23:04:24 +01:00
.gitignore Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
.travis.yml Add more environments to Travis CI conf. 2013-04-11 14:02:29 +02:00
ChangeLog.md Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
LICENSE.txt Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
MANIFEST.in Remove trailing slashes 2012-03-08 21:57:38 +01:00
README.rst Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
THANKS Updated documentation, Sundown and minitest. 2012-07-03 00:09:08 +02:00
build_ffi.py Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
setup.py Use CFFI for Hoedown binding. 2015-06-02 15:03:44 +02:00
wercker.yml Update wercker.yml 2014-09-29 14:20:08 +02:00

README.rst

Misaka

image

A CFFI binding for Hoedown, a markdown parsing library.

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

Installation

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')

Or:

import misaka as m
print m.html('some other text')