How do I escape variable in url? Seems like this nor this variant do not work
@include image("R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs=")
@mixin image($base64)
background: url(data:image/gif;base64,#{$base64}) //this is line N
//background: url("data:image/gif;base64,#{$base64}")
(Line N: Properties are only allowed within rules, directives, mixin includes, or other properties.)
I tried sass 3.4.22
and 3.5.0-rc.1