gonzales-pe
gonzales-pe copied to clipboard
[Sass|SCSS] Using double quotes within interp causes parse error
Using double quotes with an interp within an attribute selector causes a parse error.
The following code causes an error:
[attr="foo #{"bar"}"] { p:v }
While the following code is ok:
.foo {
content: "foo #{"bar"}";
}