aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/no-useless-comments
blob: c25f3817a78180d18a1037272c64ff7b3d062757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/zsh
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