xem / miniMinifier

HTML/CSS/JS minifiers in 128+ bytes
103 stars 8 forks source link

escaped CSS #13

Open tomhodgins opened 7 years ago

tomhodgins commented 7 years ago
\64 \69 \76 { \63 \6f \6c \6f \72 : \72 \67 \62 \61 \28 \32 \35 \35 \2c \30 \2c \30 \2c \2e \37 \35 \29 }

correct minification

\64\69\76{\63\6f\6c\6f\72:\72\67\62\61\28\32\35\35\2c\30\2c\30\2c\2e\37\35\29}

CSSnano output

\64 \69 \76{\63:\72 \67 \62 \61 \28 \32 \35 \35 \2c \30 \2c \30 \2c \2e \37 \35 \29}
tomhodgins commented 7 years ago

A second example of a very similar thing:

\64 \69 \76 ::\62 \65 \66 \6f \72 \65 {
  \63 \6f \6e \74 \65 \6e \74 : '\48 \45 \4c \50 \20 \4d \45 \20 \45 \53 \43 \41 \50 \45 \20 \54 \48 \49 \53 \20 \43 \53 \53'
}

correct minification

\64\69\76:\62\65\66\6f\72\65{\63\6f\6e\74\65\6e\74:'\48\45\4c\50\20\4d\45\20\45\53\43\41\50\45\20\54\48\49\53\20\43\53\53'}

CSSnano output

\64 \69 \76 ::\62 \65 \66 \6f \72 \65{\63:"\48 \45 \4c \50 \20 \4d \45 \20 \45 \53 \43 \41 \50 \45 \20 \54 \48 \49 \53 \20 \43 \53 \53"}