Metadata-Version: 2.1
Name: hoedown
Version: 0.3.0
Summary: The Python binding for Hoedown, a markdown parsing library.
Home-page: https://github.com/hhatto/python-hoedown
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: MIT
Description: python-hoedown
        ==============
        
        .. image:: https://secure.travis-ci.org/hhatto/python-hoedown.png?branch=master
            :target: https://travis-ci.org/hhatto/python-hoedown
        
        The Python binding for hoedown_, a markdown parsing library.
        the original code of the misaka_ library by Frank Smit.
        
        .. _hoedown: https://github.com/hoedown/hoedown
        .. _misaka: https://github.com/FSX/misaka
        
        
        Installation
        ------------
        
        Cython is only needed to compile .pyx file.
        
        With pip::
        
            pip install hoedown
        
        Or manually::
        
            python setup.py install
        
        
        Example
        -------
        
        Very simple example::
        
            from hoedown import Markdown, HtmlRenderer
        
            rndr = HtmlRenderer()
            md = Markdown(rndr)
        
            print md.render('some text')
        
        Or::
        
            import hoedown as m
            print m.html('some other text')
        
        
        Command Line Tool
        -----------------
        
        output from Markdown to HTML::
        
            hoedownpy MARKDOWNFILE.md
        
        
        For Maintainer
        --------------
        
        intall development requirements::
        
            pip install -e ".[dev]"
        
        
        build::
        
            invoke all
        
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.5
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Utilities
Provides-Extra: dev
