1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<===> input.scss
$input: literal;
.result {
dquoted: "#{#{$input}}";
dquoted: "#{"[#{$input}]"}";
dquoted: "#{"#{$input}"}";
dquoted: "#{'#{$input}'}";
dquoted: "#{"['#{$input}']"}";
squoted: '#{#{$input}}';
squoted: '#{"[#{$input}]"}';
squoted: '#{"#{$input}"}';
squoted: '#{'#{$input}'}';
squoted: '#{"['#{$input}']"}';
}
<===> output.css
.result {
dquoted: "literal";
dquoted: "[literal]";
dquoted: "literal";
dquoted: "literal";
dquoted: "['literal']";
squoted: "literal";
squoted: "[literal]";
squoted: "literal";
squoted: "literal";
squoted: "['literal']";
}
|