https://github.com/ellisonleao/flask-mistune
Flask interface for mistune markdown parser
https://github.com/ellisonleao/flask-mistune
Last synced: 6 months ago
JSON representation
Flask interface for mistune markdown parser
- Host: GitHub
- URL: https://github.com/ellisonleao/flask-mistune
- Owner: ellisonleao
- License: mit
- Archived: true
- Created: 2014-03-20T03:28:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-06-11T17:38:30.000Z (over 6 years ago)
- Last Synced: 2025-03-16T22:49:36.471Z (7 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Flask-Mistune
=============Flask interface for mistune markdown parser
[](https://travis-ci.org/ellisonleao/flask-mistune)
[](https://crate.io/packages/flask-mistune/)
[](https://crate.io/packages/flask-mistune/)## How to install:
``` pip install flask-mistune ```## How to use:
```python
# import the packages
from flask_mistune import Mistune, markdown
``````python
# register the app
Mistune(app)
``````html
{{ text| markdown }}
```