> Has anybody seen this anomaly?  I put the following text in a template
> (all lines have a \n on the end of them:
> XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
> ============================
> 
> XXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXX
> ============================

Please post a self-contained example with any relevant version and
platform info.  The example below works correctly for me on TT2.06.

Craig

#!/usr/bin/perl -w

use Template;
my $tt = Template->new({PRE_CHOMP => 0, POST_CHOMP => 0});
$tt->process(\*DATA) or die $tt->error();

__END__
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
============================

XXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXX
============================


Reply via email to