如何使用sphinx autodoc停止出现“索引”和“Python模块索引”?

问题描述 投票:2回答:1

我正在使用sphinx autodoc来检索类和模块文档字符串。

当我使用autodoc时,sphinx会自动生成一个名为Python Module Index的丑陋页面。

如果我将:noindex:添加到每个单独的autoclassautomodule,我只能禁用此页面。

问题:有没有办法将:noindex全局插入到这些ReStructured Text指令中?


我的index.rst供参考:

.. toctree::
   :maxdepth: 5
   :glob:

   README
   CHANGELOG
   DEV-README
python python-sphinx autodoc
1个回答
3
投票

您应该能够在index.rst下删除它。看看是否有一条线:

* :ref:`modindex`
© www.soinside.com 2019 - 2024. All rights reserved.