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


HTML-EscapeEvil-AllowAll documentation  | view source Contained in the HTML-EscapeEvil-AllowAll distribution.

Index


NAME

Top

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

VERSION

Top

0.05

SYNPSIS

Top

    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

Top

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

Top

new

Create HTML::EscapeEvil::AllowAll instance.

allow_all

All tags allow.

Example :

  $escapeallow->allow_all;

_to_flat_array

Private method.

_init

Private method.

SEE ALSO

Top

HTML::EscapeEvil

AUTHOR

Top

Akira Horimoto <kurt0027@gmail.com>

COPYRIGHT

Top


HTML-EscapeEvil-AllowAll documentation  | view source Contained in the HTML-EscapeEvil-AllowAll distribution.