gruntjs / grunt-contrib-compass

Compile Compass to CSS.
http://gruntjs.com/
MIT License
626 stars 128 forks source link

Compiling SASS with a rule with "content: "\\";" #185

Closed cesarwbr closed 10 years ago

cesarwbr commented 10 years ago

Hi! I'm trying to compile many SASS files using this Grunt plugin, but I'm having a problem when a file have a rule like this:

.my-icon {
  content: "\\";
}

The problem here is the use of "\". In my project the SASS file that have this code import other files using "@import" and it is imported by other files too. I don't know why but when the SASS has this type of rule the "@import" does not work.

sindresorhus commented 10 years ago

This task just calls the Sass binary. Try StackOverflow or the Sass issue tracker.