-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
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
not operator matches too broadly #873
Comments
Below is another example of this problem: @mixin test($var) {
@debug "Value is #{$var}";
}
@include test(notFalse); The output of the debug will be "Value is false" when it should be "Value is notFalse" |
@robbi5 this case is fix on master and will be 3.2. @rawalter21 this appears to still be an error. Can you please create a sass-spec? Here's an example of a good sass-spec PR sass/sass-spec#239 |
Similar issue here. I have something like,
In the output, I get "false" instead of "notification". I tried with other strings which start with "not", and I get the same result. |
Spec added sass/sass-spec#255 |
This is fixed and will be in 3.2. |
Hi,
not
in declarations gets converted intofalse
, even when other characters are appended.Example:
Expected output:
Actual output:
(Our use case: We have a list of icons, with icons named like "icon-note", "icon-guitar", ...)
The text was updated successfully, but these errors were encountered: