Run HTML tidy recursively on linux

Linux
<pre><code>find . -name *.ht* | while read i; do tidy -f tidy-errors.txt -m -utf8 --drop-empty-elements no --indent yes --clean yes --wrap 80 --tidy-mark no $i; done </code></pre>

© 2026 Code0x378