@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.