gonzales-pe icon indicating copy to clipboard operation
gonzales-pe copied to clipboard

[Sass|SCSS] Using double quotes within interp causes parse error

Open bgriffith opened this issue 8 years ago • 0 comments

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"}";
}

bgriffith avatar Nov 08 '16 10:11 bgriffith