I want to create a link to a page in the documentation.
I am currently using
/// You will find a copy here.
///
/// \ref clicn
I want the link to be here rather than the name of the page
that clicn refers to.
I want to create a link to a page in the documentation.
I am currently using
/// You will find a copy here.
///
/// \ref clicn
I want the link to be here rather than the name of the page
that clicn refers to.
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;
This is also answered here