Indent style syntax seems to be possible.
mull opened this issue · comments
Emil Ahlbäck commented
Hi. From the README:
The sassc executable only compiles SCSS syntax, not the indent-style Sass syntax!
However that seemed wrong to me, so I tested both sassc and boot-sassc and each of them works just fine with SASS syntax. Tested with this:
$font-stack: Helvetica, sans-serif
$primary-color: #333
body
font: 100% $font-stack
color: $primary-color
background-color: #eee
Output:
body {
font: 100% Helvetica, sans-serif;
color: #333;
background-color: #eee; }
Matt Gauger commented
This may have changed. Libsass, which sassc is based on, always said it did not support the indent syntax in the past.
Emil Ahlbäck commented
Really does seem like it changed. The latest sassc (installed via homebrew) definitely handles it!