Reputation: 2045
Let's say I have a section in a doxygen page page_Examples
called section_Example
. Is it possible to link directly to that section?
Linking to the page is done with \link page_Examples Examples \endlink
, but I would like to go directly to the section! Thanks.
Upvotes: 6
Views: 6646
Reputation: 2031
You can use
\ref section_Example Link Title
to create the link you're looking for. See the documentation for more information.
Upvotes: 10