Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
583 stars 141 forks source link

Ruby sass sometimes changes single to double quotes #176

Open eevee opened 11 years ago

eevee commented 11 years ago

This is left alone:

p { content: ''; }

But this:

$a: 'hi';
p { content: '#{$a}'; }

Becomes this:

p {
  content: "hi"; }

This might only happen when #{} is involved, but I'm not positive.

There's no semantic difference in CSS, and arguably this is a Sass bug, but this ticket serves as documentation.

mechanicalduck commented 10 years ago

Could be related: https://github.com/sass/sass/issues/1394