forked from cheng/wallet
9 lines
230 B
Bash
9 lines
230 B
Bash
|
#!/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."
|