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
Here are some fun whitespace bugs for you on your Friday night gentlemen.
Input:
$input: "\0_\a_\A"; test { bug1: "#{"_\a" + b}"; bug2: "#{a $input}"; }
Ruby SASS 3.4.18:
@charset "UTF-8"; test { bug1: "_\a b"; bug2: "a �_ _ "; }
Libsass 3.3.2-32-gb2a3:
@charset "UTF-8"; test { bug1: "_\ab"; bug2: "a �_\a_\a"; }
The text was updated successfully, but these errors were encountered:
Add specs for issue 1786
b9a82db
This PR add specs for sass/libsass#1786
Thanks for the report @andrew-skybound.
Spec added sass/sass-spec#647
Sorry, something went wrong.
Pretty sure this has something to do that \a is interpreted as \x0A which is \r.
\a
\x0A
\r
I think the main bug is fixed with #1880. But there is another strange one which I fail to see the logic:
test { test-1: "#{'\a'}"; test-1: "#{x '\a'}"; test-1: "#{x + '\a'}"; }
Ruby sass:
test { test-1: "\a"; test-1: "x "; test-1: "x\a"; }
Libsass
test { test-1: "\a"; test-1: "x \a"; test-1: "x\a"; }
Might be a ruby sass bug ...
mgreter
No branches or pull requests
Here are some fun whitespace bugs for you on your Friday night gentlemen.
Input:
Ruby SASS 3.4.18:
Libsass 3.3.2-32-gb2a3:
The text was updated successfully, but these errors were encountered: