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?
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.pyAnd another function
another.py:You should see that foo() and func.foo() will be automatically linked.