| HTML-EscapeEvil-AllowAll documentation | view source | Contained in the HTML-EscapeEvil-AllowAll distribution. |
HTML::EscapeEvil::AllowAll - Escape tag.but all tag allow
0.05
use HTML::EscapeEvil::AllowAll;
my $escapeallow = HTML::EscapeEvil::AllowAll->new;
print "script is " , ($escapeallow->allow_script) ? "allow" : "not allow";
print "style is " , ($escapeallow->allow_style) ? "allow" : "not allow";
$escapeallow->clear;
Only tag where it wants to escape is specified with deny_tags method etc.
and it uses it because it all enters the state of permission.
Create HTML::EscapeEvil::AllowAll instance.
All tags allow.
Example :
$escapeallow->allow_all;
Private method.
Private method.
Akira Horimoto <kurt0027@gmail.com>
Copyright (C) 2006 Akira Horimoto
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-EscapeEvil-AllowAll documentation | view source | Contained in the HTML-EscapeEvil-AllowAll distribution. |