Fluffy
Fluffy

Reputation: 347

doxygen how to hyperlink to related page

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

Upvotes: 11

Views: 20500

Answers (2)

fiscblog
fiscblog

Reputation: 694

You have several options:

PS. Go to the example you provided and let your browser show you the code of the page. This might help you to understand basic principles of syntax.

Upvotes: 0

kuga
kuga

Reputation: 1755

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;

Upvotes: 12

Related Questions