On Feb 6, 2004, at 9:25 AM, Mark Stosberg wrote:

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



Reply via email to