Hi I would like to use TT to convert my own very simple and slow templates. My problem is show on example below::
BEFORE
%{ RAWPERL }%
my $r; $TEMPLATE->process('some_template', {}, $r );
$output.="PERL:".$r;
%{ END }%
AFTER
When I run this example content of 'some_template' is printed first.
I need this kind of code because of structure of my own old templates.
I am quite newbie to TT so any advice?
Pawel
