|
|
  One cool tool for tidying up your HTML, as well as notifying you of coding errors is TIDY. For an overview of what TIDY can do for you see this overview. Installation is quite easy:
root@srv-1 src # tar -xzf tidy*.tgz
root@srv-1 src # cd tidy
root@srv-1 tidy # ls
Makefile Makefile.bcc32 Makefile.nmake
Makefile.vc6 console include src
root@srv-1 tidy # make
if [ ! -d ./obj ]; then mkdir ./obj;
.
.
.
./console/tab2space.c -lc
srv-1 tidy # make install
|
There are a variety of binaries for all kinds of systems if you don't want to compile. Tidy turned up an error in this article on NetAdminTools that we missed. We forgot to convert that < and > signs around the M, and it didn't show up right in the browser.
|
|