自动toctree更新

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

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

directory python-sphinx glob toctree
1个回答
4
投票

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

.. toctree::
   :glob:

   *

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

参考:http://sphinx-doc.org/markup/toctree.html?highlight=glob

© www.soinside.com 2019 - 2024. All rights reserved.