aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/no-useless-comments3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/no-useless-comments b/contrib/no-useless-comments
index 235eae4..c25f381 100755
--- a/contrib/no-useless-comments
+++ b/contrib/no-useless-comments
@@ -3,5 +3,8 @@ set -e
for f in ./build/**/*.html ./build/*.html; do
sed -i 's/<!--\[-->//g' "$f"
sed -i 's/<!--\]-->//g' "$f"
+ sed -i 's/<!--\[\!-->//g' "$f"
+ sed -i 's/<!--\!\]-->//g' "$f"
+ sed -i 's/<!--\[1-->//g' "$f"
sed -i 's/<!---->//g' "$f"
done