How to create a line break in doxygen markdown?

by cortez.connelly , in category: Third Party Scripts , 6 months ago

How to create a line break in doxygen markdown?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

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

Related Threads:

How to specify a markdown file as another tab in doxygen?
How to automatically break line in tailwind css?
How to add line break in php mail function?
How to add a line break in woocommerce product titles on static pages?
How to put a blank line between two images in doxygen?
How to create a line in d3.js?