Bullets / lists are not respected in comments that use `///`
akbyrd opened this issue · 2 comments
akbyrd commented
In C++ files block comments that use ///
will not have newlines for lists respected.
/// Foo
/// * A
/// * B
is wrapped into
/// Foo * A * B
This also occurs with ///!
. All other block comment styles seem to work. ///
and ///!
are valid Doxygen formats.
https://www.doxygen.nl/manual/docblocks.html
OkkeHendriks commented
I have got the same issue (using F#).
gnbond commented
Would love to see a solution to this as well, our C++ Doxygen standard needs /// so
/// 2 accessors, both will throw if the buffer is empty:
/// - newest()
/// - oldest()
gets wrapped to
// / 2 accessors, both will throw if the buffer is empty: / - newest() / -
// oldest()