如何让 Sphinx 生成“contents.rst”?

oro*_*ome 4 python python-sphinx

我使用的 Sphinx 模板(例如sphninxdocsphinx13)有一个指向“contents.rst”文件的链接;但是,尽管此文件被记录为 "special",但我看不到生成它的方法。

有没有办法让 Sphinx自动生成“contents.rst”,还是我需要手动生成它?

Mar*_*oma 5

当我来到这个页面时,我需要修复.readthedocs.yml. 我的 sphinx 配置路径缺少“源”部分:

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/source/conf.py
Run Code Online (Sandbox Code Playgroud)

在配置中,我有

# The master toctree document.
master_doc = 'index'
Run Code Online (Sandbox Code Playgroud)