Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ellisonleao/flask-mistune

Flask interface for mistune markdown parser
https://github.com/ellisonleao/flask-mistune

Last synced: about 2 months ago
JSON representation

Flask interface for mistune markdown parser

Awesome Lists containing this project

README

        

Flask-Mistune
=============

Flask interface for mistune markdown parser

[![Build Status](https://travis-ci.org/ellisonleao/flask-mistune.svg?branch=master)](https://travis-ci.org/ellisonleao/flask-mistune)
[![PyPi version](https://img.shields.io/pypi/v/Flask-Mistune.svg)](https://crate.io/packages/flask-mistune/)
[![PyPi downloads](https://img.shields.io/pypi/dm/Flask-Mistune.svg)](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 }}

```