sassdoc
sassdoc copied to clipboard
Incorrect parsing of list used in @output annotation
The following annotation is incorrectly parsed into one list item nested inside another in 2.1.15:
/// @output
/// - border-bottom-left-radius
/// - border-top-left-radius

That might be up to the theme, not the core.
Quick fix would be to:
/// @output
/// - border-bottom-left-radius
/// - border-top-left-radius
But this should be fixed in CDocParser, strip multiline annotations indend if needed.