我确实了解如何在Sphinx RST中创建词汇表,以及如何链接到其术语:
.. glossary::
term1
description of term1
Linking to :term:`term1` is easy.
我的问题是,如何链接到不同Sphinx项目词汇表中的术语,我有一个intersphinx定义?
例如,我对Python 2的Sphinx文档有一个intersphinx定义:
intersphinx_mapping = {
'py': ('https://docs.python.org/2/', None),
}
但是我没有成功指定其词汇表术语的链接,使用RST源中的任何这些结构:
:ref:`py:iterable`
:ref:`py:glossary.iterable`
:term:`py:iterable`
:term:`py:glossary.iterable`
这是可能的,如果是这样的话,词汇表的定义需要如何以及如何引用词汇表术语?