Skip to main content

django-docutils · Python Package License

docutils (a.k.a. reStructuredText / rst / reST) support for Django.

Documentation: https://django-docutils.git-pull.com/

django-docutils turns off docutils features that are risky on the web — raw HTML pass-through, file inclusion, and local docutils.conf lookup — and filters unsafe link schemes from rendered output. That reduces risk; it does not make untrusted markup safe. If people can submit their own reStructuredText or Markdown to your site (comments, profiles, CMS fields), read the Security topic first.

Quickstart

Install django-docutils:

$ pip install django-docutils

Next, add django_docutils to your INSTALLED_APPS in your settings file:

INSTALLED_APPS = [
    # ... your default apps,
    "django_docutils"
]

Template tag

In your template:

{% load django_docutils %}
{% rst %}
Welcome
=======

Write `reStructuredText <https://docutils.sourceforge.io/rst.html>`_ with
links, **bold** text, and highlighted code:

.. code-block:: python

   print("hello")
{% endrst %}

Template filter

In your template:

{% load django_docutils %}
{% filter rst %}
Welcome
=======

Write `reStructuredText <https://docutils.sourceforge.io/rst.html>`_ with
links, **bold** text, and highlighted code:

.. code-block:: python

   print("hello")
{% endfilter %}

Template engine (class-based view)

You can also use a class-based view to render reStructuredText (reST).

If you want to use reStructuredText as a django template engine, INSTALLED_APPS isn't required, instead you add this to your TEMPLATES variable in your settings:

TEMPLATES = [
    # ... Other engines
    {
        "NAME": "docutils",
        "BACKEND": "django_docutils.template.DocutilsTemplates",
        "DIRS": [],
        "APP_DIRS": True,
    }
]

Now django will be able to scan for .rst files and process them. In your view:

from django_docutils.views import DocutilsView


class HomeView(DocutilsView):
    template_name = "base.html"
    rst_name = "home.rst"

Settings

# Optional, automatically maps roles, directives and transformers
DJANGO_DOCUTILS_LIB_RST = {
    "docutils": {
        "strip_comments": True,
        "initial_header_level": 2,
    },
    "roles": {
        "local": {
            "gh": "django_docutils.lib.roles.github.github_role",
            "twitter": "django_docutils.lib.roles.twitter.twitter_role",
            "email": "django_docutils.lib.roles.email.email_role",
        }
    },
    "directives": {
        "code-block": "django_docutils.lib.directives.code.CodeBlock",
    },
}

# Optional
DJANGO_DOCUTILS_LIB_TEXT = {
    "uncapitalized_word_filters": ["project.my_module.my_capitalization_fn"]
}

For trusted static RST only — never for user-submitted content — docutils features that the default rendering disables can be re-enabled with an explicit opt-in (Security topic, docutils security guide):

DJANGO_DOCUTILS_LIB_RST = {
    "allow_unsafe_docutils_settings": True,
    "docutils": {
        "raw_enabled": True,
        "file_insertion_enabled": True,
    },
}

More information

Docs Build Status Code Coverage

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_docutils-0.31.1.tar.gz (96.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_docutils-0.31.1-py3-none-any.whl (51.7 kB view details)

Uploaded Python 3

File details

Details for the file django_docutils-0.31.1.tar.gz.

File metadata

  • Download URL: django_docutils-0.31.1.tar.gz
  • Upload date:
  • Size: 96.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for django_docutils-0.31.1.tar.gz
Algorithm Hash digest
SHA256 4ac919696ac789360e2c327a8e545456a9d191bd72fdd0fb3a1c1a70a71ac274
MD5 3d5bdc362b6bc1fb5a5cb03f1a50f2ec
BLAKE2b-256 6b178325c0fe8ecf84e325ec9e2306a2edc9f6d609f2eea91243874dad0792b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_docutils-0.31.1.tar.gz:

Publisher: tests.yml on tony/django-docutils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_docutils-0.31.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_docutils-0.31.1-py3-none-any.whl
Algorithm Hash digest
SHA256 20c9fd053a45fef0cd11af82a3dc55a03b4982d6bca2c4545c9756cf69a52c19
MD5 a9241f50b2e6e43b2f1aa5582a02e9b5
BLAKE2b-256 02bf88458f66052e8d98522deedbd4a5b539aa51bbb5c64a1c6b0eb9891822c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_docutils-0.31.1-py3-none-any.whl:

Publisher: tests.yml on tony/django-docutils

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page