Skip to content
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

Concatenating an empty string w/ a quoted string will unquote the string #2153

Closed
T-Hugs opened this issue Aug 19, 2016 · 1 comment
Closed

Comments

@T-Hugs
Copy link

T-Hugs commented Aug 19, 2016

""foo"" + "" ==> foo

input.scss

@debug "\"foo\"" + "";
// --> foo (expected/ruby sass: "foo")
@debug "" + "\"foo\"";
// --> foo (expected/ruby sass: "foo")
@debug "" + "\"foo";
// --> "foo (as expected)
@debug "\"foo\"" + "bar";
// --> "foo"bar (as expected)

version info (Windows):

$ sassc.exe --version
sassc: [NA] (master: 077af530)
libsass: [NA] (master: 014a61b6)
sass2scss: 1.0.6
sass: 3.4
xzyfer added a commit to xzyfer/sass-spec that referenced this issue Aug 23, 2016
@xzyfer
Copy link
Contributor

xzyfer commented Aug 23, 2016

I can confirm this issue. Spec added sass/sass-spec#892

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants