Rewrap icon indicating copy to clipboard operation
Rewrap copied to clipboard

Bullets / lists are not respected in comments that use `///`

Open akbyrd opened this issue 2 years ago • 2 comments

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

akbyrd avatar Apr 12 '23 19:04 akbyrd

I have got the same issue (using F#).

OkkeHendriks avatar May 04 '23 13:05 OkkeHendriks

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() 

gnbond avatar Feb 13 '24 03:02 gnbond