NAME

HTML::EscapeEvil::AllowAll - Escape tag.but all tag allow

VERSION

0.03

SYNPSIS

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;

DESCRIPTION

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.

METHOD

allow_all

All tags allow.

Example :

$escapeallow->allow_all;

SEE ALSO

File::Basename File::Spec HTML::EscapeEvil YAML

AUTHOR

Akira Horimoto <kurt0027@gmail.com>

COPYRIGHT

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.