MRodrigues
MRodrigues

Reputation: 2045

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.

Upvotes: 6

Views: 6646

Answers (1)

Eric Miller
Eric Miller

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

Related Questions