:: Author: Robert Lie (mobilefish.com) :: :: This dos batch file uses the HTML tidy application to validate a fix :: number of htm files. :: :: To use this batch file you need the following files: :: config_tidy.txt - This file contains tidy configuration options. :: More information about these configuration options :: can be found at: :: http://tidy.sourceforge.net/docs/quickref.html :: htm_list.txt - This file contains a list of html files to validate. :: You must enter YOUR webpage names and locations. :: output_tidy.txt - This output file contains warning and/or error :: messages during the validation process. :: process_files.bat - This batch file goes thru the list of htm files :: and each file its encountred is validated by :: the tidy application. :: del output_tidy.txt for /f "eol=; tokens=1*" %%x in (htm_list.txt) do call process_files.bat %%x