I'm using Sphinx with autodoc
to document my sources.
Lets say I have a file pre_processing.py
, containing 3 classes.
I would like to have section in the generated HTML files, like this
Main
====
Topic1
------
blabla
Here is included class1 and class2 doc
Topic2
------
blibli
Here is included class3 doc
However , all that I can manage so far is this:
Main
====
Topic1
------
blabla
Here is a link to class1 and class2 doc
Topic2
------
blibli
Here is a link to class3 doc
Here is cdumped class1, class2 and class3
How can this be achieved please? Do I have to abandon autodoc
, and fill my rst file manually ?
autoclass
(which produces documentation for a single class) instead ofautomodule
. – mzjn