You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like interpolations aren't parsed inside quoted strings such as those provided to url(). For instance:
.my-bg {
background: url("bg-#{$color}.gif");
}
The value node comes out as:
{"type": "value","content": [{"type": "uri","content": [{"type": "string","content": "\"bg-#{$color}.gif\""// <-- no parsing of interpolation}]}]}
The parsing of the interpolation works correctly if the quotes are removed from inside the of url(), but of course we can't guarantee that our users will do that :)
The text was updated successfully, but these errors were encountered:
Looks like interpolations aren't parsed inside quoted strings such as those provided to
url()
. For instance:The value node comes out as:
The parsing of the interpolation works correctly if the quotes are removed from inside the of
url()
, but of course we can't guarantee that our users will do that :)The text was updated successfully, but these errors were encountered: