-
Notifications
You must be signed in to change notification settings - Fork 464
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
inspect() should return an unquoted string when passed a quoted string #2826
Comments
nex3
added a commit
to sass/sass-spec
that referenced
this issue
Feb 13, 2019
Spec added in sass/sass-spec#1343 |
nex3
added a commit
to sass/sass-spec
that referenced
this issue
Feb 13, 2019
nex3
added a commit
to sass/sass-spec
that referenced
this issue
Feb 13, 2019
glebm
added a commit
to sass/sass-spec
that referenced
this issue
Apr 13, 2019
glebm
added a commit
to glebm/libsass
that referenced
this issue
Apr 13, 2019
glebm
added a commit
to sass/sass-spec
that referenced
this issue
Apr 15, 2019
carlosvalle
added a commit
to GSA/sam-styles
that referenced
this issue
Oct 17, 2019
inspect() function should return an unquoted string when passed a quote string - sass/libsass#2826 This bug has been fixed in LibSass 3.6.0 - unfortunatelly node-sass its having issues updating to 3.6.0 (sass/node-sass#2685) While we wait for node-sass. We need to make sure that values that we pass to the utilities mixins are exactly as described in _system-tokens.scss
carlosvalle
added a commit
to GSA/sam-styles
that referenced
this issue
Oct 18, 2019
inspect() function should return an unquoted string when passed a quote string - sass/libsass#2826 This bug has been fixed in LibSass 3.6.0 - unfortunatelly node-sass its having issues updating to 3.6.0 (sass/node-sass#2685) While we wait for node-sass. We need to make sure that values that we pass to the utilities mixins are exactly as described in _system-tokens.scss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, when LibSass's
inspect()
function is passed a quoted string, it returns that string as-is. It should instead return an unquoted string that contains the text of the quoted string as it would be written in a Sass file. For example,inspect("a")
should returnunquote('"a"')
, but it currently returns"a"
.Originally reported in sass/dart-sass#594.
The text was updated successfully, but these errors were encountered: