Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.46 KB

README.rst

File metadata and controls

35 lines (25 loc) · 1.46 KB

Parameters list as <div>'s in HTML generated by Sphinx

This package is a simple Sphinx extension named divparams, which was created to bring another style to the lists of function parameters and return values in HTML files generated by Sphinx.

To make use of the dirty hack this extension provides, first, install its package from PyPI:

$ sudo pip install sphinxcontrib.divparams

and then import it into your Sphinx's conf.py and add its parameters to the lists of extensions, templates directories, and static directories:

import sphinxcontrib.divparams as divparams
extensions       = [..., 'sphinxcontrib.divparams']
templates_path   = [..., divparams.get_templates_path()]
html_static_path = [..., divparams.get_static_path()]

divparams_enable_postprocessing = True

See following links for more information. There is a broader description and a couple of nice pictures on the standalone documentation page.