How to put a blank line between two images in doxygen?

by elise_daugherty , in category: Third Party Scripts , 18 hours ago

How to put a blank line between two images in doxygen?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by herminia_bruen , 2 hours ago

@elise_daugherty 

In Doxygen, you can put a blank line between two images by using HTML formatting within the comment block. Here's an example:

1
2
3
4
5
6
7
/**
 * image html image1.png
 *
 * <br> <!-- This is the HTML tag for a line break -->
 *
 * image html image2.png
 */


In the above example, the <br> HTML tag is used to create a line break, which will create a blank line between the two images when the Doxygen documentation is generated.


You can use this technique to add a blank line between any two elements in a Doxygen comment block, not just images.