lose .= and = overrides - fallback means the . override will handle it
[scpubgit/HTML-String.git] / lib / HTML / String / TT / Directive.pm
CommitLineData
ed99cbb4 1package HTML::String::TT::Directive;
2
3use strictures 1;
4use HTML::String::Overload ();
cfb242dd 5use Data::Munge;
ed99cbb4 6use base qw(Template::Directive);
7
8sub template {
cfb242dd 9 return byval {
10 s/sub {/sub { use HTML::String::Overload;/;
11 } Template::Directive::pad(shift->SUPER::template(@_), 2);
ed99cbb4 12}
13
141;