我正在为我的python库编写文档使用sphinx,我还在intersphinx中添加了另一个sphinx文档.并且它的工作非常好,但是我的一些函数的命名与引用的文档中的命名相同,这会导致为:func:...引用隐藏它们的名称.
:func:...
有什么方法可以do_some()在其他文档中引用阴影函数吗?(:func:`do_some`创建我的功能的链接do_some())
do_some()
:func:`do_some`
python documentation python-sphinx
documentation ×1
python ×1
python-sphinx ×1