aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/static-html.sh
blob: 7acf10412635d9dded9ffd44a5bc65173f746ed5 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

sed -i \
	-e '/href=/s|\.md|\.html|' \
	-e '/blockquote/s|/\* display \*/|display: none;|' \
	-e '/<!-- badges here \/\/-->/r badges.html' \
	-e '/<!-- badges here \/\/-->/d' \
	"${@}"