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

by elise_daugherty , in category: Third Party Scripts , 7 months ago

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

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by herminia_bruen , 7 months 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.

Related Threads:

How to create a line break in doxygen markdown?
How to quickly merge two images using php?
How to put data into session array in symfony 5?
How to join two table in symfony 5?
How to change the config file for mathjax in doxygen?
How to strip blank lines in mustache?