Open joneff opened 9 years ago
This bug has already been fixed with sass/libsass#1231
But in essence, while the following compiles correctly:
.icon:before { content: "\e000"; }
If you assign \e000 to a variable and then use it you get unexpected output:
\e000
$char: "\e000"; .icon:before { content: $char; }
@charset "UTF-8"; .icon:before { content: ""; }
This bug has already been fixed with sass/libsass#1231
But in essence, while the following compiles correctly:
If you assign
\e000
to a variable and then use it you get unexpected output: