如何使用 sphinx autodoc 阻止 "Index" 和 "Python Module Index" 出现?
How do I stop the "Index" and "Python Module Index" from appearing using sphinx autodoc?
我正在使用 sphinx autodoc 检索 class 和模块文档字符串。
当我使用 autodoc sphinx 时,会自动生成一个名为 Python Module Index
的丑陋页面。
如果我将 :noindex:
添加到每个 autoclass
和 automodule
.
,我只能禁用此页面
问题:
有没有办法将 :noindex
全局插入到这些 ReStructured Text 指令中?
我的index.rst
供参考:
.. toctree::
:maxdepth: 5
:glob:
README
CHANGELOG
DEV-README
您应该可以在 index.rst 下删除它。看看有没有线:
* :ref:`modindex`
我正在使用 sphinx autodoc 检索 class 和模块文档字符串。
当我使用 autodoc sphinx 时,会自动生成一个名为 Python Module Index
的丑陋页面。
如果我将 :noindex:
添加到每个 autoclass
和 automodule
.
问题:
有没有办法将 :noindex
全局插入到这些 ReStructured Text 指令中?
我的index.rst
供参考:
.. toctree::
:maxdepth: 5
:glob:
README
CHANGELOG
DEV-README
您应该可以在 index.rst 下删除它。看看有没有线:
* :ref:`modindex`