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
[Forwarding: https://github.com/sass/node-sass/issues/840]
Tested with latest master: 0135278.
Given the input:
$on: false; @if $on == false { s { a: ss } }
LibSass generates:
s { a: ss; }
If we remove space right after $on:
$on
$on: false; @if $on== false { s { a: ss } }
The generated output is same.
If we remove space both before and after ==:
==
$on: false; @if $on==false { s { a: ss } }
It throws:
error reading values after $on
If we remove space only before false:
false
$on: false; @if $on ==false { s { a: ss } }
error reading values after
(nothing after after)
after
The text was updated successfully, but these errors were encountered:
Fix operator parsing regression
b97ad35
They are of course no actual words! Fixes sass#1068
5ef6688
mgreter
Successfully merging a pull request may close this issue.
[Forwarding: https://github.com/sass/node-sass/issues/840]
Tested with latest master: 0135278.
Given the input:
LibSass generates:
If we remove space right after
$on
:The generated output is same.
If we remove space both before and after
==
:It throws:
If we remove space only before
false
:It throws:
(nothing after
after
)The text was updated successfully, but these errors were encountered: