The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

NAME

HTML::Lint::Pluggable::WhiteList - to ignore certain errors that have been specified

VERSION

This document describes HTML::Lint::Pluggable::WhiteList version 0.10.

SYNOPSIS

my $lint = HTML::Lint::Pluggable->new;
$lint->load_plugin(WhiteList => +{
rule => +{
'attr-unknown' => sub {
my $param = shift;
if ($param->{tag} =~ /input|textarea/ && $param->{attr} eq 'istyle') {
return 1;
}
else {
return 0;
}
},
},
});

AUTHOR

Kenta Sato <karupa@cpan.org>

LICENSE AND COPYRIGHT

Copyright (c) 2012, Kenta Sato. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.