sphinxcontrib-datatemplates

Introduction

sphinxcontrib.datatemplates is a Sphinx extension for rendering nicely formatted HTML with parts of the output coming from JSON and YAML data files.

It is intended to be used to mix machine-readable data with prose.

Installation

This project is available on PyPI, and can be installed using pip or poetry:

pip install sphinxcontrib.datatemplates
poetry add sphinxcontrib.datatemplates

You’ll also want to add the extension to extensions in conf.py

extensions = [
    'sphinxcontrib.datatemplates',
]