We use Sphinx to create our Python documentation.
This is the command line we use:
sphinx-apidoc -F -o %WORKSPACE%\docs_rst %PACKAGE% sphinx-build -b html %WORKSPACE%\docs_rst %WORKSPACE%\docs
The problem is that we get one page for each package. However, we really need one page for each module, since the page will be too long otherwise.
How can I customize this please?
source share