Open eevee opened 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.
Could be related: https://github.com/sass/sass/issues/1394
This is left alone:
But this:
Becomes this:
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.