Skip to main content

A set of templatetags and filters to use restructured text inside django templates.

Project description

django-rstify is a set of template filters to provide easy conversion from restructured text to HTML. Besides this basic functionality this application allows you to highlight sourcecode snippets inside your text using the pygments library.

Installation

There are several ways to install this application:

  1. Checkout the latest version from my git repository:

    git clone git://github.com/bartTC/django-rstify.git

Then either put the directory rstify into your pythonpath or switch to django-rstify and do python setup.py install.

  1. Install this application using easy_install:

    easy_install django-rstify

Finally, put rstify into your INSTALLED_APPS setting in your django project.

How to use it in templates

To convert a restructured text from an object to HTML simply apply the rstify filter on it:

{% load rstify_tags %}

{{ entry.content|rstify }}

If you want to convert inline content, use the filter templatetag around:

{% load rstify_tags %}

{% filter rstify %}
This is some *restructured text*.
{% endfilter %}

How to use it in sourcecode

Applying this filter inside your code is easy:

>>> from rstify import rstify
>>>
>>> print rstify('This is *restructured text*.')
<p>This is <em>restructured text</em>.</p>

Initial Header Level

By default the initial heading in your restructured text becomes a <h1> in HTML:

>>> header = '''
... ================
... This is a Header
... ================
... '''
>>> print rstify(header)
<div class="section">
<h1><a id="this-is-a-header" name="this-is-a-header">This is a Header</a></h1>
</div>

You can override this by setting the initial_header_level to an integer from 1 to 6:

>>> print rstify(header, initial_header_level=3)
<div class="section">
<h3><a id="this-is-a-header" name="this-is-a-header">This is a Header</a></h3>
</div>

In your template just set this as the first option of the rstify filter:

{{ entry.content|rstify:"3" }}

Syntax Highlighting

django-rstify provides syntax highlighting using the pygments library. To highlight parts of your restructured text, simply put it in a sourcecode directive:

Here is some text. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Integer porttitor nulla sed dui. Aenean lorem mi, tincidunt et, porttitor
nec, condimentum venenatis, felis. Maecenas ornare blandit leo.

.. sourcecode:: python

    def foo(bar):
        return bar*2

Continue with text. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Integer porttitor nulla sed dui. Aenean lorem mi, tincidunt et, porttitor nec,
condimentum venenatis, felis. Maecenas ornare blandit leo.

Pygments provides a bunch of highlighters (also called lexer), just replace python with a lexer of your choice. Here is a complete set of available lexers. Read pygments styles how to colorize the output using css.

License

This application is licensed under the New BSD License. See LICENSE for details. django-rstify comes bundled with a pygments directive which is released under BSD License. See rstify/pygments_directive.py for details.

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-rstify-0.1.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file django-rstify-0.1.tar.gz.

File metadata

  • Download URL: django-rstify-0.1.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-rstify-0.1.tar.gz
Algorithm Hash digest
SHA256 b4e1f19446d5f2bac4abf6571c0354ee5e7fd37adc5a81d8e4895d7509ffde10
MD5 5eb1d6b9426fc17bf827a2483ba89e5b
BLAKE2b-256 b4e47f7d7bb0c7c88341c541ff2623ffc7eb106473dbf3d5bb121dabae35a0f4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page