Faster Validating

Download the vnu.jar file from GitHub.

Make sure all of your class files are downloaded to TempMedia

Copy the following to validate all of your html pages. The output will show up in the terminal window.

for file in $(find . -type f -name '*.html'); do 
  echo "### $file";
  java -jar ~/vnu.jar --skip-non-html  --errors-only --format text $file;
  echo "";
  echo "";
done;