Metadata-Version: 1.1
Name: mpiece
Version: 0.2.3
Summary: Customizable and fast Markdown parser in pure Python
Home-page: https://github.com/davidnotplay/mpiece
Author: David Casado Martínez
Author-email: dcasadomartinez@gmail.com
License: BSD
Description: MPiece
        ======
        Fast and very customizable markdown parser in pure Python.
        
        Features
        --------
        
        - **Pure Python**.  Tested in Python 2.7+, Python 3.3+ and PyPy.
        - **Very fast**.
        - **Customizable**. You can add new markdown grammar and modify the output.
        - **More**. Table, footnotes, fenced code.
        
        
        Install
        -------
        
        Installing mpiece with pip:
        
        .. code::
        
          $ pip install mpiece
        
        
        Basic Usage
        -----------
        
        .. code:: python
        
           from mpiece import markdown
        
           md_text = "**Hello world!!!**"
           result = markdown(md_text)
        
           print(result)
           # output: <p><strong>Hello world!!!</strong></p>
        
        
        Documentation
        -------------
        
        `Official documentation <http://mpiece.readthedocs.io/>`_
        
        
Keywords: markdown html parser
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Software Development :: Libraries :: Python Modules
