- Does this accept the indented syntax?
- Yes — that's the 'Sass' specifically. For SCSS input use SCSS-to-CSS. The two Sass-family syntaxes share semantics but differ in punctuation.
- What about comments?
- Line comments (//) are stripped when targeting CSS (they're Sass-only). Block comments (/* */) are preserved.
- Will control flow (@if, @each) work?
- Yes — @if/@else, @each, @for, @while all evaluate to their resulting CSS at compile time.
- Can I use this output with PostCSS plugins?
- Yes — the output is standard CSS. Feed it into any PostCSS pipeline for further processing.