in reply to Re: encode params in Template into array ref
in thread encode params in Template into array ref

use strict; use v5.14; use utf8; use Template; my $value = "...."; #some unicode text with wide characters here my $template = Template->new(); my $result = [ ]; $template->process( "1.tt", { value => $value }, $result ); say @$result;
And i got warning:
Wide character in say at 1.pl line 17.

Replies are listed 'Best First'.
Re^3: encode params in Template into array ref
by Anonymous Monk on Dec 10, 2014 at 01:40 UTC