Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to link to specific section in an external Doxygen html file?

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.

like image 375
MRodrigues Avatar asked Feb 16 '23 20:02

MRodrigues


1 Answers

You can use

\ref section_Example Link Title

to create the link you're looking for. See the documentation for more information.

like image 94
Eric Miller Avatar answered Apr 28 '23 03:04

Eric Miller