Sphinx toctree编号未显示在外部链接条目上

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

我目前正在为Sphinx撰写技术文档。

我使用编号的toctree。在此toctree中,我插入外部Web链接,然后呈现的条目不包含数字。

对于这个toctree:

.. toctree::
   :numbered:
   :hidden:
   :maxdepth: 2

   Administration <admin/admin.rst>
   Usage <usage/usage.rst>
   Squash TM - Squash TF Link <tm-tf-link/tm-tf.rst>
   Download <https://squash-tf.readthedocs.io/en/latest/download.html#squash-tf-execution-server>

“下载”条目有结果:

Toctree result

有没有人有我的提示?

python-sphinx read-the-docs
1个回答
0
投票

这似乎是@StevePiercy提到的一个错误。我刚刚提交了一份关于here的错误报告。类似的问题是this之一。但是,您可以手动设置缺失的索引。

Hello world
============

.. toctree::
   :numbered:
   :hidden:
   :maxdepth: 2

   Administration <admin/admin.rst>
   Usage <usage/usage.rst>
   Squash TM - Squash TF Link <tm-tf-link/tm-tf.rst>
   4. Download <https://squash-tf.readthedocs.io/en/latest/download.html#squash-tf-execution-server>

输出:

enter image description here

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