更改Sphinx中的内部链接标签

时间:2012-07-02 10:00:09

标签: python python-sphinx

我正在使用Sphinx生成文档。我可以用

更改目录中文档的链接标签
Features </resources/pages/features>
根据{{​​3}},在toctree指令中

,但如何对指向文档中的部分的链接执行相同操作?

编辑:

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

doc.rst

.. toctree::
    :maxdepth: 2

    Section - Information <info>

.. _info:

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

因此Section - information会出现在目录中,但Info section会出现在文档本身中

1 个答案:

答案 0 :(得分:0)

我相信你可以使用标准的reST标签。

示例:

页/ features.rst:

.. _label1:

A section
---------

Some text

otherpage.rst:

See :ref:`label1`

Cross-referencing arbitrary locations