Skip to main content

📖 Full documentation on https://django-markup.readthedocs.io/en/latest/

django-markup

This app is a generic way to provide filters that convert text into html.

Compatibility Matrix:

Py/Dj 3.9 3.10 3.11 3.12 3.13
4.2 (LTS)
5.0
5.1
5.2 (LTS)

Quickstart

Download and install the package from the python package index (pypi):

Note that django-markup ships with some filters ready to use, but the more complex packages such as Markdown or ReStructuredText are not part of the code. Please refer the docs which packages are used for the built-in filter.

An alternative is to install django-markup with all filter dependencies right away. Do so with:

$ pip install django-markup[all_filter_dependencies]

Then add it to the INSTALLED_APPS list:

INSTALLED_APPS = (
    ...
    'django_markup',
)

Use it in the template:

{% load markup_tags %}
{{ the_text|apply_markup:"markdown" }}

Or in Python code:

from django_markup.markup import formatter
formatter('Some *Markdown* text.', filter_name='markdown')

Testsuite

To run the testsuite install the project with pipenv and run it:

% poetry  install --with dev --all-extras
$ poetry run pytest

You can also test against a variation of Django and Python versions using nox:

$ pip install nox
$ nox

Changelog

v1.10 (2025-07-27)

  • Added support for Django 5.2.
  • Fix django-markup[all_filter_dependencies] group setup.
  • Switched the testing framework from tox to nox.

Backwards incompatible changes:

  • Removed CreoleParser markup due to upstream errors.

v1.9.1 (2024-11-19):

  • Drop support for Python <= 3.8.
  • Drop support for Django <= 4.1.
  • Added support for Python 3.13.

v1.9 (2024-08-11):

  • Minor Type Annotation fixes.
  • Switch from pipenv to Poetry.
  • Added support for Django 5.1.

v1.8.1 (2023-10-07):

  • Remove all annotations for "Self". It would require an additional dependency for installations on Python <3.11 and that's not worth it.

v1.8 (2023-10-07):

  • Drop support for Python <3.8.
  • Added support for Python 3.12 and Django 5.0.
  • Type Annotations.

v1.7.2 (2023-05-01):

  • Fixed a setup.cfg bug that defined the minimal Django version to be v3.7 which does not exist. The correct version is 3.2.

v1.7.1 (2023-04-25):

  • Fixed Python classifiers in setup.cfg.

v1.7 (2023-04-25):

  • Django 4.2 compatibility and tests.
  • Python 3.11 compatibility and tests.

v1.6 (2022-08-14):

  • Dropped support for Django <3.2 and Python <3.7.
  • Django 3.2 (LTS) compatibility and tests.
  • Django 4.0 compatibility and tests.
  • Django 4.1 compatibility and tests.
  • Python 3.9 compatibility and tests.
  • Python 3.10 compatibility and tests.

v1.5 (2020-06-12):

  • Dropped support for Django <=1.11 and Python <=3.5.
  • Python 3.8 compatibility and tests.
  • Django 3.0 compatibility and tests.
  • bleach-whitelist dependency is no longer necessary as tags are now shipped with the built-in markdown filter.
  • Uses pytest for testing.

v1.4 (2019-03-15):

  • Markdown's safe_mode was deprecated and no longer functional, it's behavior was replaced with bleach.
  • Pipfile support for local development and general code cleanup.

v1.3 (2018-09-07):

  • Python 3.6 and 3.7 compatibility and tests.
  • Django 2.0 and 2.1 compatibility and tests.
  • The package setup script now provides the ability to install all filter dependencies automatically. See the installation Readme for details.

v1.2 (2017-03-18):

  • Django 1.10 compatibility and tests.
  • Updated all filter dependencies. most notably SmartyPants to v2.0 which changed it's API, so your project dependencies need to update it as well.

v1.1 (2016-05-02):

  • The Markdown filter has the safe_mode option enabled by default.
  • The RestructuredText filter has the file and raw content inclusion disabled by default.

v1.0 (2016-01-02):

  • Removed some 5 year old dust
  • Django 1.8+ compatible
  • Tests

Backwards incompatible changes:

  • Removed Pygments highlighting in the Markdown and RestructuredText filter.
  • Removed CreoleParser library in favor of a pypi package.
  • Removed Lightbox filter.
  • The RestructuredText filter now renders level 1 and 2 headers. See Github Issue 14 for details and a backwards compatible workaround.

v0.4 (2011-06-01):

  • Added a widont filter
  • MarkupField is South compatible.
  • Tested with Django 1.3

v0.3 (2009-07-29):

django-markup now ships with a builtin creole parser. Advantage is, that the recently used Creoleparser library needs the Genshi lib, which needs a c-compiler and so on. The builtin creole parser is a pure python library without any dependencies and follows the wikicreole.org specifications. django-markup uses the WikiCreole library.

Release files for django-markup 1.10

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for django-markup 1.10
File Size Uploaded
django_markup-1.10.tar.gz 13.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for django-markup 1.10
File Interpreter ABI Platform
django_markup-1.10-py3-none-any.whl Python 3 none any Details

Total release size: 31.6 kB

Release files / django_markup-1.10.tar.gz

Download URL django_markup-1.10.tar.gz
Size 13.2 kB
Tags Source
SHA-256 checksum
How to use checksums
777c9a97f27fa4a25ea5b7dbe5a949c38fec1511ac23073595cfbbf2f2d83b55
BLAKE2b-256 checksum
How to use checksums
11ed7f2518b8acb199f821c26cf25ed10ab920bf3709e96fcbf94d600fe3b047
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.1.3 CPython/3.13.5 Darwin/24.5.0

Release files / django_markup-1.10-py3-none-any.whl

Download URL django_markup-1.10-py3-none-any.whl
Size 18.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e384699a29cb96287cc88acb3ac3ec9f444c91fb9a5c243d9c5b36f269fc0e9d
BLAKE2b-256 checksum
How to use checksums
7c75cbc14879006b33441a047f0c5ace642764810b72b70858125591918b01cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.1.3 CPython/3.13.5 Darwin/24.5.0

Release history Release notifications | RSS feed

This release

1.10 This release

2 release files

1.9.1

2 release files

1.9

2 release files

1.8.1

3 release files

1.8

2 release files

1.7.2

2 release files

1.7.1

2 release files

1.7

2 release files

1.6

2 release files

1.5

2 release files

1.4.1

2 release files

1.4

2 release files

1.3

2 release files

1.2

1 release file

1.1

1 release file

1.0

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page