www/Makefile: Add this file to the repository

Make it easy to check HTML-compliance of the SCST website.
This commit is contained in:
Bart Van Assche
2021-12-17 15:55:54 -08:00
parent 53d5d68f01
commit 6dd60c4bb1

2
www/Makefile Normal file
View File

@@ -0,0 +1,2 @@
check:
find -name '*.html' | while read f; do tidy -e < "$$f" | sed "s|^-e|$$f|"; done