use HTML::Template; my $template = <<'HTML'; Blah ist HTML # open the html template my $ht = HTML::Template->new( scalarref => \$template, ); $ht->param(zweiunvierzig => 42); print $ht->output;