Doxygen python 链接到函数
我正在使用 Doxygen 来记录我的 python 模块,并试图让它链接到文本中的函数。我可以让它链接到函数的名称空间,但不能链接到函数本身。
例如 ModuleName::Namespace
可以工作,但 ModuleName::Namespace::getSomething()
不行。
我如何让这些链接发挥作用?
I'm using Doxygen to document my python module and I'm trying to get it to link to a function in-text. I can get it to link to the function's namespace ok but not to the function itself.
E.g. ModuleName::Namespace
works but ModuleName::Namespace::getSomething()
doesn't.
How do I get these links to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Doxygen 自动将函数包装在每个模块的命名空间中。您必须记录此模块以使文档可见且可链接(或使用 EXTRACT_ALL = YES)。
下面是一个示例
func.py
和另一个函数
another.py
:您应该看到 foo() 和 func.foo() 将自动链接。
Doxygen automatically wraps functions in a namespace per module. You have to document this module in order to make the documentation visible and linkable (or use EXTRACT_ALL = YES).
Here is an example
func.py
And another function
another.py
:You should see that foo() and func.foo() will be automatically linked.