We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maps, like numbers with complex units, are never a value that can be understood by css, so ruby sass gives an error when this is attempted.
The following sass file:
$m: (a: 1, b: 2); .foo { interpolated: "#{$m}"; direct: $m; inspected: inspect($m); }
in libsass compiles to:
.foo { interpolated: "(a: 1, b: 2)"; direct: (a: 1, b: 2); inspected: (a: 1, b: 2); }
But an error should have been given. Only the third line, using the inspect function should have succeeded.
The text was updated successfully, but these errors were encountered:
Error on map output and interpolation
map
6432fa8
Fixes sass#1246
48fa530
190d618
6706f09
mgreter
No branches or pull requests
maps, like numbers with complex units, are never a value that can be understood by css, so ruby sass gives an error when this is attempted.
The following sass file:
in libsass compiles to:
But an error should have been given. Only the third line, using the inspect function should have succeeded.
The text was updated successfully, but these errors were encountered: