Django Markdowny

PyPI version Build status

Django Markdowny is a Django template tag application to convert Markdown to HTML.

Unlike other Django/Markdown filters, markdowny supports all of the options available in Python Markdown via settings.

Install

$ pip install django-markdowny

Add to settings.py.

INSTALLED_APPS = [
    # ...
    'markdowny',
]

Usage

{% load markdowny_tags %}

{% markdowny %}
# Hello, world!
{% endmarkdowny %}

Result:

<h1>Hello, world!</h1>

Indices and tables