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
This might be an edge case but works fine on ruby sass.
input
// okay .plain-url { background-image: url(../test.png); } // okay .url-with-parameters { background-image: url(../test.png?v=20150812); } // example function returns param number @function test(){ @return 20150812; } // doesn't work // error reading values after ( on line 23 at column 24 .url-with-function-interpolation-without-quotes { background-image: url(../test.png?v=#{test()}); } // workaround .url-with-function-interpolation-using-quotes { background-image: url("../test.png?v=#{test()}"); }
output: libsass (v3.2.5)
error reading values after ( on line 23 at column 24
output: ruby-sass (v3.4.14)
.plain-url { background-image: url(../test.png); } .url-with-parameters { background-image: url(../test.png?v=20150812); } .url-with-function-interpolation-without-quotes { background-image: url(../test.png?v=20150812); } .url-with-function-interpolation-using-quotes { background-image: url("../test.png?v=20150812"); }
The text was updated successfully, but these errors were encountered:
Thanks @hyunchulkwak. I can confirmed this is fixed on master and will be 3.3
Sorry, something went wrong.
Activate specs for issue 1438
7694bd9
This PR activates specs for sass/libsass#1438
I thought this was an interesting usecase, and I know we have work on the url function coming up so I added a spec sass/sass-spec#474
url
thanks @xzyfer
mgreter
No branches or pull requests
This might be an edge case but works fine on ruby sass.
input
output: libsass (v3.2.5)
output: ruby-sass (v3.4.14)
The text was updated successfully, but these errors were encountered: