/sectiondoc

The sectiondoc extension parses the function and class docstrings as they are retrieved by the autodoc extension and converts the section blocks into sphinx friendly rst. The extension shares similarities with alternatives (such as numpydoc) but aims at reflecting the original form of the docstring.

Primary LanguagePythonOtherNOASSERTION

Sectiondoc: Docstring section rendering sphinx extension

Build status Coverage status Documentation Status

The sectiondoc extension parses the function and class docstrings as they are retrieved by the autodoc extension and renders the section blocks into sphinx friendly rst. The extension shares similarities with alternatives (such as numpydoc) but aims at reflecting the original form of the docstring and support project specific customization.

Key aims of sectiondoc are:

  • Do not change the order of sections.
  • Allow sphinx directives between (and inside) section blocks.
  • Custom rendering styles
  • (not yet) Easier to debug (native support for debugging).

Repository

The sectiondoc extension lives at Github. You can clone the repository using:

$ git clone https://github.com/enthought/sectiondoc.git

Installation

Install sectiondoc from pypi using pip:

$ pip install sectiondoc

Install the latest developing version using:

$ pip install git+https://github.com/enthought/sectiondoc.git#egg=sectiondoc

Usage

Styles can be selected by referencing in conf.py the module they are defined:

extensions = [
    ...,
    'sectiondoc.styles.legacy',
    ...,
]