1
0
forked from cheng/wallet
wallet/docs/check_html.sh

12 lines
233 B
Bash
Raw Normal View History

#!/bin/bash
cd `dirname $0`
for f in ../*.html *.html libraries/*.html
do
echo " " $f
tidy -lang en_us --doctype html5 -utf8 -access 4 -e -q -o $TMP/fred.html "$f"
done
echo "checked all html files for html5 compliance."