You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example of a css file that will fail to be analyzed due to incorrect parsing: http://www.example.com/css.css?p=1&p=2.
Since & is a special character in cmd.exe, it will disregard &p=2 and throw an error saying that it is an invalid command.
I solved this for myself by modifying modules\analyzeCss.js:135 to analyzeCss(['--url', entry.url.replace(/&/g, "^^^&")]); which escapes the ampersands.
The text was updated successfully, but these errors were encountered:
System: Windows
Example of a css file that will fail to be analyzed due to incorrect parsing:
http://www.example.com/css.css?p=1&p=2
.Since & is a special character in cmd.exe, it will disregard
&p=2
and throw an error saying that it is an invalid command.I solved this for myself by modifying
modules\analyzeCss.js:135
toanalyzeCss(['--url', entry.url.replace(/&/g, "^^^&")]);
which escapes the ampersands.The text was updated successfully, but these errors were encountered: