3

我正在使用Sphinx生成文档。我可以更改目录中文档链接的标签

Features </resources/pages/features>

根据 toctree 指令在 toctree 指令中,但是如何对文档中的部分的链接执行相同的操作

编辑 :

这就是我想要实现的目标:

文档.rst

.. toctree::
    :maxdepth: 2

    Section - Information <info>

.. _info:

Info Section
------------

所以它Section - information会出现在目录中,但Info section会出现在文档本身中

4

1 回答 1

0

I believe you can use standard reST labels.

Example:

pages/features.rst:

.. _label1:

A section
---------

Some text

otherpage.rst:

See :ref:`label1`

Cross-referencing arbitrary locations.

于 2012-07-02T10:37:21.173 回答