Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

doxygen how to hyperlink to related page

Tags:

doxygen

I am new to doxygen and i could not find the syntax for me to create a link from main page to a specific page in the related pages section.

For example , i am looking for something similar to this :

http://portaudio.com/docs/v19-doxydocs/index.html

fox example:

PortAudio API Overview -> This is a link to related page.

A top-down view of the PortAudio API, its capabilities, functions and data structure

Any ideas how can i do that ?

Thanks Michael

like image 862
Fluffy Avatar asked Sep 09 '13 13:09

Fluffy


1 Answers

This should work with \ref

//! \page handle MyPage
//! text in MyPage

//! Some variable. For additional information look at \ref handle "this cool page"
int myvar;
like image 194
kuga Avatar answered Sep 19 '22 19:09

kuga