wallet/docs/check_html.sh
reaction.la 5238cda077
cleanup, and just do not like pdfs
Also, needed to understand Byzantine fault tolerant paxos better.

Still do not.
2022-02-20 18:26:44 +10:00

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."