A Django template tag to convert Markdown into HTML
Project description
Django Markdowny is a Django template tag application to convert Markdown into HTML with Python-Markdown.
Unlike other Django-Markdown filters, Markdowny supports all of the options in Python-Markdown via settings.
Install
$ pip install django-markdowny
Add to settings.py.
INSTALLED_APPS = [
# ...
'markdowny',
]
Usage
Use as a template tag.
{% load markdowny_tags %}
{% markdowny %}Hello, world!{% endmarkdowny %}
Or as a template filter.
{{ 'Hello, world!'|markdowny }}
Result:
<p>Hello, world!</p>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-markdowny-0.2.4.tar.gz
(5.9 MB
view hashes)
Built Distribution
Close
Hashes for django_markdowny-0.2.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d43f389d1c3107325738c81d686e9bcd77502d5cba2e810805fa2bdfc475bf9 |
|
MD5 | 6ff4e81262c0b874b32dab01a592dea7 |
|
BLAKE2b-256 | 50ce5a636947493bde5090112ff69ca7ee54f926004662c4e72d7dd89cc2b039 |