Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indent style syntax seems to be possible. #16

Open
mull opened this issue Feb 20, 2016 · 2 comments
Open

Indent style syntax seems to be possible. #16

mull opened this issue Feb 20, 2016 · 2 comments

Comments

@mull
Copy link

mull commented Feb 20, 2016

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; }
@mathias
Copy link
Owner

mathias commented Feb 22, 2016

This may have changed. Libsass, which sassc is based on, always said it did not support the indent syntax in the past.

@mull
Copy link
Author

mull commented Feb 23, 2016

Really does seem like it changed. The latest sassc (installed via homebrew) definitely handles it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants