Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to force Compass to use the Sass syntax instead of SCSS?

share|improve this question
I found it myself: --syntax sass – Thomas Aug 1 '11 at 13:11
You should close or mark this question as solved. – Maxime Fabre Apr 5 '12 at 8:06
Please accept the given answer! – markus Jul 24 '12 at 18:21

1 Answer

up vote 2 down vote accepted

For new projects, run:

compass create path/to/project --syntax sass

to generate .sass files using Sass syntax inside the sass folder. The --syntax option and others are listed when you run compass --help.

For existing projects, add the following to your Compass config.rb:

preferred_syntax = :sass

That's covered in the Compass configuration reference. And you'll want to run your existing SCSS files through sass-convert to generate new ones which use Sass syntax.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.