Rewrap
Rewrap copied to clipboard
Bullets / lists are not respected in comments that use `///`
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
I have got the same issue (using F#).
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()