How are other people integrating HTML validation into their work flow? I want a solution that's easy so it actually gets used. :)
I use XML::LibXML to validate against a DTD:
$parser = XML::LibXML->new;
$parser->validation(1);
$parser->parse_file($path);HTH,
David
