Quickstart

Installation

For latest official version:

$ pip install django-docutils

Upgrading:

$ pip install --upgrade django-docutils

Developmental releases

New versions of django-docutils are published to PyPI as alpha, beta, or release candidates. In their versions you will see notification like a1, b1, and rc1, respectively. 1.10.0b4 would mean the 4th beta release of 1.10.0 before general availability.

  • pip:

    $ pip install --upgrade --pre django-docutils
    

via trunk (can break easily):

  • pip:

    $ pip install -e git+https://github.com/tony/django-docutils.git#egg=django-docutils
    

Add the django app

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

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

Next steps

Integate docutils to your django site:

  1. Template tag

  2. Template filter

  3. Class-based view