How do I exclude modules from autosummary recursive documentation

Viewed 130

I have some Sphinx docs like so:

Browse the code-based documentation here:

.. autosummary::
   :toctree: _autosummary
   :template: custom-module-template.rst
   :recursive:

   foo

Where foo is a module which has foo.bar, foo.bar.a, foo.baz, etc. Is there a way to exclude foo.baz?

0 Answers
Related