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
{{ message }}
This repository was archived by the owner on Aug 6, 2021. It is now read-only.
Hi, tested 3 css parsing libraries before this one. Brilliant and thanks!
Found small bug regarding css parse removing a semicolon..
This css:
"background-image: url('data:image/jpeg;base64,/9j/4AAQSkZ.."
Becomes:
"background-image: url('data:image/jpegbase64,/9j/4AAQSkZ.."
The fix:
Line 181 was:
ret[ret.length - 1].value += line.trim();
Should be: (note line is trimmed already above)
ret[ret.length - 1].value += ';'+line;//.trim();
The text was updated successfully, but these errors were encountered: