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
Hey, Thanks for your great library.
I've seen the code responsible for fixing CSS url()s, and I want to suggest a broader regex.
url()
Two cases that should be taken care of:
url( "myfoo.png" )
\s*
url("../fonts/materialdesignicons-webfont.eot?v=1.0.08")
Thank you in advance, and let me know of any further help needed!
The text was updated successfully, but these errors were encountered:
Yes. see also #9
Sorry, something went wrong.
No branches or pull requests
Hey,
Thanks for your great library.
I've seen the code responsible for fixing CSS
url()
s, and I want to suggest a broader regex.Two cases that should be taken care of:
url( "myfoo.png" )
- spaces are not covered. Maybe\s*
is enoughurl("../fonts/materialdesignicons-webfont.eot?v=1.0.08")
- The regex should accept any valid URL, including query strings.Thank you in advance, and let me know of any further help needed!
The text was updated successfully, but these errors were encountered: