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
Input SCSS:
@function returns-string() { @return "selector"; } #{"selector"} { color: red; } #{returns-string()} { color: red; } #{"selector"} selector2 { color: red; } #{returns-string()} selector2 { color: red; }
Ruby Sass output:
selector { color: red; } selector { color: red; } selector selector2 { color: red; } selector selector2 { color: red; }
Libsass (via node-sass)
selector { color: red; } selector { color: red; } selector selector2 { color: red; } "selector" selector2 { color: red; }
The text was updated successfully, but these errors were encountered:
Thanks for the report @petebrowne. I can confirm this issue is present on master.
Sorry, something went wrong.
Add specs for issue 1770
8eb7d44
This PR add specs for sass/libsass#1770
Spec added sass/sass-spec#638
Activate specs for issue 1770
5662edf
This PR activates specs for sass/libsass#1770
Fix interpolants returning quoted string in selectors
e2920c9
Fixes sass#1770 Spec sass/sass-spec#665
This is fixed and will be in the upcoming 3.3.3. Subscribe to #1808 for future updates on that release.
xzyfer
No branches or pull requests
Input SCSS:
Ruby Sass output:
Libsass (via node-sass)
The text was updated successfully, but these errors were encountered: