The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Changes for version 2.20 - 2012-04-06

  • ENHANCEMENTS
    • Sometimes creating HTML::Lint-compliant HTML just isn't possible. Now, you can now turn individual errors on and off in your HTML via comment directives, like so:
      • <!-- html-lint elem-img-sizes-missing: off, attr-unknown: off -->
    • And if you have a batch of code that's hopeless:
      • <!-- html-lint all: off -->
    • Added check for unknown entities, such as "&foo;".
    • Added check for unclosed entitities, such as "&amp" without the closing semicolon.
    • Added a check for a bare ampersand that should be written as &amp;

Modules

check for HTML errors in a string or file
Error object for the Lint functionality
Rules for HTML 4 as used by HTML::Lint.
Parser for HTML::Lint. No user-serviceable parts inside.
Test::More-style wrapper around HTML::Lint