Help for this page

Select Code to Download


  1. or download this
      my $filter = sub {
         my $text_ref = shift;
    ...
       my $template = HTML::Template->new(
                        filename => 'zap.tmpl',
                        filter => $filter);
    
  2. or download this
    sub convert {
       my $text_ref = shift;
    ...
       $$text_ref =~ s/\[\%\/(.*?)\%\]/<\/TMPL_$1>/g;
       $$text_ref =~ s/\[\%(.*?)\%\]/<TMPL_$1>/g;
    }