Metadata-Version: 1.0
Name: mark3
Version: 0.1.2
Summary: A lightweight markdown to html converter.
Home-page: https://bitbucket.org/jlm/mark3
Author: Joseph Marshall
Author-email: marshallpenguin@gmail.com
License: UNKNOWN
Description: mark3
        =====
        
        mark3 provides a lightweight, markdown_ to html parser for python 2.7 and 3.
        
        .. _markdown: http://daringfireball.net/projects/markdown/
        
        Usage
        -----
        
        Using mark3 is very simple::
        
            from mark3.markdown import markdown
            html = markdown(raw_text)
        
        Deviations
        ----------
        
        mark3 may differ slightly from the official markdown implementation.
        
        If you find a difference between mark3's output and the official markdown's not
        mentioned here, please `open a ticket`__.
        
        .. _ticket: https://bitbucket.org/jlm/mark3/issues
        __ ticket_
        
        Lists
        +++++
        
        A <p> will be placed in an <li> if, and *only if* it's needed::
            
            * foo
            * bar
        
        Will produce the same output as::
        
            * foo
        
            * bar
        
        Inline HTML
        +++++++++++
        
        This markdown::
        
            < foo <b>bar</b>>
        
        Produces::
        
            <p>&lt; foo <b>bar</b>&gt;</p>
        
        Instead of the official markdown implementation output::
        
            <p>&lt; foo <b>bar</b>></p>
        
        
        Tabs
        ++++
        
        Tabs are expanded to 4 spaces before parsing. As such, output will never
        contain tabs.
        
        
        Insignificant Whitespace
        ++++++++++++++++++++++++
        
        Outputted html doesn't have as much insignificant whitespace as the official
        markdown implementation.
        
Keywords: markdown html
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Markup :: HTML
