Help for this page

Select Code to Download


  1. or download this
    my $template = Template->new({
        ENCODING => 'utf8',
    });
    
  2. or download this
    use Template;
    
    use open ":std", ":encoding(UTF-8)";
    ...
    
    my $tt = Template->new(ENCODING => 'UTF-8');
    $tt->process(\$template,{dogface => $dogface});