Subject: | backslashes are not properly handled |
Hi,
Backslashes in the template are being processed rather than passed through to the output string.
here's an example:
Template::Like->new->process( \q[\\\\], { }, \(my $output) );
print $output, "\n";
The output is
\
It should be
\\
Thanks,
Diab