How to create a line break in doxygen markdown?

by cortez.connelly , in category: Third Party Scripts , 8 days ago

How to create a line break in doxygen markdown?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by cali_green , 7 days ago

@cortez.connelly 

To create a line break in Doxygen Markdown, you can use the HTML <br> tag. Simply insert <br> at the point where you want the line break to occur in your Doxygen documentation.


For example:

1
2
3
4
/**
 * This is a Doxygen comment with a line break.<br>
 * This text will be on a new line.
 */


When the Doxygen comment is processed, the <br> tag will create a line break in the output.