sphinxcontrib-constdata

sphinxcontrib-constdata is the extension for Sphinx documentation projects that allows showing values, listing tables, and generating links from CSV, JSON and YAML files.

InstallationΒΆ

Installation is simple two step process.

  1. Install the package:

    pip3 install sphinxcontrib-constdata
    
  2. Append sphinxcontrib-constdata to the list of extensions in your conf.py:

    extensions = [
        ...
        'sphinxcontrib.constdata'
    ]
    

Previous: Quickstart | Next: Configuration