The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

W3C::LogValidator::HTMLValidator - check HTML validity vith validator.w3.org

SYNOPSIS

  use  W3C::LogValidator::HTMLValidator;
  my $validator = new W3C::LogValidator::HTMLValidator;
  my $max_invalid = 12;
        # how many log entries are parsed and returned before we stop
        # 0 -> processes everything
  $validator->uris('http://www.w3.org/', 'http://my.web.server/my/web/page.html');
  my $result_string= $validator->process_list($max_invalid);

DESCRIPTION

This module is part of the W3C::LogValidator suite, and checks HTML validity of a given document via the W3C HTML validator service.

AUTHOR

Olivier Thereaux <ot@w3.org>

SEE ALSO

W3C::LogValidator::LogProcessor, perl(1).