Skip to content

v0.1.11: New option to disable autosummary nesting

Choose a tag to compare

@Chilipp Chilipp released this 20 Sep 13:28
· 178 commits to master since this release

Thanks to the work by @piyushk in #19, autodocsumm now has a :autosummary-no-nesting: option to disable the generation of autosummary tables for the classes in a module.
As such,

.. automodule:: module
    :autosummary:
    :members:
    :autosummary-no-nesting:

will generate an autosummary table for the specified module, but not for the members (i.e. classes) in the module.

See the docs for an example.