Open evanliomain opened 19 hours ago
<p><style>*{background:white;margin:10 20 10 80 }p{background:red;padding:10
<p><style>*{background:white;margin:10 20 10 80}p{background:red;padding:10
<p><style>*{background:white }p{background:red;padding:10
<p><style>*{background:white}p{background:red;padding:10
It seems to come from the "missing" ; before }.
;
}
Adding the rule at the bottom this should remove whitespace around these characters
"{" "}" ":" ";" ","
.replaceAll(/\s*([{}:;,])\s*/g, "$1")
<p><style>*{background:white;margin:10 20 10 80 }p{background:red;padding:10
should be<p><style>*{background:white;margin:10 20 10 80}p{background:red;padding:10
<p><style>*{background:white }p{background:red;padding:10
should be<p><style>*{background:white}p{background:red;padding:10
It seems to come from the "missing"
;
before}
.