in reply to Printing without escaping quotes

I'll have to add my $0.02 and pimp for HTML::Template which works a treat for simple templating.
This is in my template and we'll put <TMPL_VAR NAME=TEXT> here.
my $t = HTML::Template->new(filename => 'blah.tmpl'); $t->param(TEXT => 'some text'); print $t->output;
:)