Markdown template filter for Django.
Project description
Django Markdownify - A Django Markdown filter
Django Markdownify is a template filter to convert Markdown to HTML in Django. Markdown is converted to HTML and sanitized.
Read the full documentation on Read the docs or check out the package on pypi.
Usage
Load the tag inside your template:
{% load markdownify %}
Then you can change markdown to html as follows:
{{ 'text'|markdownify }}
or
{{ somevariable|markdownify }}
Example
{% load markdownify %}
{{'Some *test* [link](#)'|markdownify }}
Is transformed to:
<p>
Some <em>test</em> <a href="#">link</a>
</p>
The filter is a wrapper around Markdown and Bleach and as such supports their settings. It is possible to define multiple settings for multiple usecases.
For example:
# settings.py
MARKDOWNIFY = {
"default": {
"WHITELIST_TAGS": ["a", "p", "h1", ]
},
"alternative": {
"WHITELIST_TAGS": ["a", "p", ],
"MARKDOWN_EXTENSIONS": ["markdown.extensions.fenced_code", ]
}
}
And in your templates:
<!-- page1.html -->
{{ mytext|markdownify }} <!-- Uses your default settings -->
<!-- page2.html -->
{{ mytext|markdownify:"alternative" }} <!-- Uses your alternative settings -->
Documentation
Read the full documentation on Read the docs.
Credits
This filter is a slightly richer and packaged version of the snippet: using-markdown-django-17.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django_markdownify-0.9.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | df00291bc338400b9ef999402751fc12c30623d266b7c04e43336d27d0eadee6 |
|
MD5 | 9e6f3056ce68640fb27cdae6d03f7e12 |
|
BLAKE2b-256 | bab5d02b5b26aea38a3b3d1cc1fec9420be5b26d53e14ba0e1d06117285fad15 |