Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Weblink in documentation

Tags:

doxygen

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

Stack Overflow

The docs I am generating are HTML only.

like image 396
pic11 Avatar asked Jul 11 '11 14:07

pic11


People also ask

What is a link in a document?

In computing, a hyperlink, or simply a link, is a reference to data that the user can follow by clicking or tapping. A hyperlink points to a whole document or to a specific element within a document. Hypertext is text with hyperlinks. The text that is linked from is called anchor text.

What is Weblink example?

Example: href="https://www.example.org". The URL https://www.example.org is defined as the target address of the hyperlink. The title attribute enables you to add any link title to a hyperlink.


1 Answers

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.

like image 135
doxygen Avatar answered Sep 28 '22 02:09

doxygen