-
-
16 Jun 2019 15:29:47 UTC
- Distribution: HTML-Lint-Pluggable
- Module version: 0.10
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (553 / 0 / 0)
- Kwalitee
Bus factor: 1- 92.06% Coverage
- License: perl_5
- Perl: v5.8.1
- Activity
24 month- Tools
- Download (21.29KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
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
use HTML::Lint::Pluggable; 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.
Module Install Instructions
To install HTML::Lint::Pluggable, copy and paste the appropriate command in to your terminal.
cpanm HTML::Lint::Pluggable
perl -MCPAN -e shell install HTML::Lint::Pluggable
For more information on module installation, please visit the detailed CPAN module installation guide.