Reputation: 14943
How do I make doxygen to generate clickable hyperlink? Something like this
The docs I am generating are HTML only.
Upvotes: 8
Views: 3194
Reputation: 14869
Just do it the same way you would do it in HTML, i.e.
<a href="http://stackoverflow.com">Stack Overflow</a>
See http://www.doxygen.org/autolink.html for more info.
Upvotes: 15