Suppose I'm writing a Doxygen comment like so
/**
* \brief Foo
* \details FooFooBar
* \note Note1 goes here
* \note Note2 goes here
*/
Note1 and Note2 are rendered as two paragraph of the same Note section. I would like them to the two separated Note sections one after the other. How can I achieve this? Using curly braces and extra line breaks did not do the trick.
You could wrap each \note in a \parblock..\endparblock like so:
/**
* \brief Foo
* \details FooFooBar
* \parblock
* \note Note1 goes here
* \endparblock
* \parblock
* \note Note2 goes here
* \endparblock
*/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With