Skip to main content

includes jinja templates in a documentation

Project description

sphinx-jinja
============

A sphinx extension to include jinja based templates based documentation into a sphinx doc

Usage
=====

In your rst doc, you can use the following snippet to use a jinja template to generate your doc

.. code:: rst

.. jinja:: first_ctx

{% for k, v in topics.items() %}

{{k}}
~~~~~
{{v}}
{% endfor %}

In your sphinx ``conf.py`` file, you can create or load the contexts needed for your jinja templates

::
extensions = ['sphinxcontrib.jinja']

jinja_contexts = {
'first_ctx': {'topics': {'a': 'b', 'c': 'd'}}
}


Each element of the `jinja_contexts` dictionary is a context dict for use in your jinja templates

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

sphinx_jinja-0.1.1.dev1-py2-none-any.whl (4.0 kB view hashes)

Uploaded Python 2

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