如何在Sphinx文档中创建内部超链接

2022-04-21 00:00:00 python python-sphinx

问题描述

如何在Sphinx文档中创建内部超链接? 我正在使用:

:role:`target`

但它不起作用。


解决方案

交叉引用使用ref

:ref:`label-name`

您可以使用以下内容提供标签:

.. _label-name:

参见:https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html#role-ref

角色用于创建自定义解释文本。请参阅:http://docutils.sourceforge.net/docs/ref/rst/directives.html#role

相关文章