forked from cheng/wallet
12 lines
233 B
Bash
12 lines
233 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."
|
|
|
|
|
|
|