自动目录树更新

Automatic toctree update

我不确定这是否可行。但我希望在编译期间将多个 .rst 文件放在一个目录中。我希望这些文件自动插入到 toctree 中。我该怎么做?

您可以使用启用通配符的 glob 选项。像这样:

.. toctree::
   :glob:

   *

这会将同一目录中的所有其他 *.rst 文件添加到 toctree。

参考:"Use “globbing” in toctree directives"