Now this app provide template filter and tag, Misaka API is not yet available.
-
Install from PyPI::
pip install django-misaka
-
Add
django_misaka
to yourINSTALLED_APPS
::INSTALLED_APPS = ( ... 'django_misaka', )
In your template
- Template filter
{% load markdown %}
...
{{ text|markdown|safe }}
- Template tag
{% load markdown %}
...
{% markdown %}
...
{% endmarkdown %}
See CHANGELOG for more details.