:compressed is the only output style that removes multi-line ( /* ... */ ) comments from final CSS rendered.
Additionally: compact converts a multi-line comment into a single line in the last CSS. With: nested and: extended, all multi-line comments and their line breaks are displayed in the final CSS.
For example, this SCSS:
// SL Comment /* ML Comment1 Whoop. */ //! SL w/ bang /*! ML Comment2 Whoop. */
will be the following CSS for each output style:
Nested:
Expanded:
Compact:
Compressed:
Post a comment with ! only affects multi-line comments in :compressed mode, where they will be saved if they are otherwise removed from the final CSS.
Katiek
source share