From 49e73a47ad7bde561af5ee0ad904bb1473ee4925 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 6 Jul 2016 07:15:06 +0200 Subject: minify_html: Also remove spaces when question mark is in attribute --- minify_html.sed | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minify_html.sed b/minify_html.sed index 2a9761d..fc9c5bc 100644 --- a/minify_html.sed +++ b/minify_html.sed @@ -3,4 +3,4 @@ s/<\/\(body\|head\|html\)>//g s/<\/\(li\|p\)>//g -s/="\([a-zA-Z0-9_:.\/#&;@-]*\)"/=\1/g +s/="\([a-zA-Z0-9_:.\/#&;@?-]*\)"/=\1/g -- cgit