pic11
pic11

Reputation: 14943

Weblink in documentation

How do I make doxygen to generate clickable hyperlink? Something like this

Stack Overflow

The docs I am generating are HTML only.

Upvotes: 8

Views: 3194

Answers (1)

doxygen
doxygen

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

Related Questions