{ "info": { "author": "David Casado Mart\u00ednez", "author_email": "dcasadomartinez@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup" ], "description": "MPiece\n======\nFast and very customizable markdown parser in pure Python.\n\nFeatures\n--------\n\n- **Pure Python**. Tested in Python 2.7+, Python 3.3+ and PyPy.\n- **Very fast**.\n- **Customizable**. You can add new markdown grammar and modify the output.\n- **More**. Table, footnotes, fenced code.\n\n\nInstall\n-------\n\nInstalling mpiece with pip:\n\n.. code::\n\n $ pip install mpiece\n\n\nBasic Usage\n-----------\n\n.. code:: python\n\n from mpiece import markdown\n\n md_text = \"**Hello world!!!**\"\n result = markdown(md_text)\n\n print(result)\n # output:
Hello world!!!
\n\n\nDocumentation\n-------------\n\n`Official documentation