in reply to Printing without escaping quotes
This is in my template and we'll put <TMPL_VAR NAME=TEXT> here. [download]
my $t = HTML::Template->new(filename => 'blah.tmpl'); $t->param(TEXT => 'some text'); print $t->output; [download]