- Notifications
You must be signed in to change notification settings - Fork65
A Python binding for Hoedown.
License
FSX/misaka
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
WARNING: Misaka is not being maintained anymore. I've not been able to find time to to properly maintain this project. Consider usingmistletoe orMistune.
A CFFI binding forHoedown (version 3), a markdown parsing library.
Documentation can be found at:http://misaka.61924.nl/
Professional support for Misaka is available as part of theTideliftSubscription. Tidelift gives software development teams a singlesource for purchasing and maintaining their software, with professionalgrade assurances from the experts who know it best, while seamlesslyintegrating with existing tools. By subscribing you will help supportMisaka future development. Alternatively consider making a smalldonation.
Misaka has been tested on CPython 2.7, 3.5, 3.6, 3.7, 3.8 and PyPy 2.7and 3.5. It needs CFFI 1.12.0 or newer, because of this it will not workon PyPy 2.5 and older.
With pip:
pip install misaka
Or manually:
python setup.py install
Very simple example:
importmisakaasmprintm.html('some other text')
Or:
frommisakaimportMarkdown,HtmlRendererrndr=HtmlRenderer()md=Markdown(rndr)print(md('some text'))
To report a security vulnerability, please use theTidelift security contact.Tidelift will coordinate the fix and disclosure.
About
A Python binding for Hoedown.