NAME
Template::Plugin::TagRescue - TT Plugin to escape html
tags except for marked
SYNOPSIS
[% USE TagRescue %]
[% FILTER html_except_for('b') -%]
Bold! and Italic!
[%- END %]
# Output:
# Bold! and <I>Italic!</I><BR>
[% 'Bold! and Italic!
' | html_except_for('i','br') %]
# Output:
# <B>Bold!</B> and Italic!
[% taglist = ['b', 'br']; 'Bold! and Italic!
' | html_except_for(taglist) %]
# Output:
# Bold! and <I>Italic!</I>
DESCRIPTION
Template::Plugin::TagRescue is a plugin for TT, which
allows you to escape html tags except for ones you set in
templates.
AUTHOR
Satoshi Tanimoto
This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
SEE ALSO
the Template manpage