Metadata-Version: 1.1
Name: prat-misaka
Version: 1.1.5
Summary: Prat fork of Frank Smit's Python binding for Sundown, a markdown parsing library.
Home-page: https://www.github.com/bkad/misaka
Author: Kevin Le
Author-email: solnovus@gmail.com
License: MIT
Description: Misaka
        ======
        
        .. image:: 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://misaka.61924.nl/
        
        .. _Sundown: https://github.com/tanoku/sundown
        
        
        Installation
        ------------
        
        Cython is only needed to compile .pyx file.
        
        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')
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Utilities
