[htmltmpl] bug fixes/patches/tests
Brought to you by:
samtregar
From: Tom H. <tom...@pu...> - 2006-03-15 10:36:29
|
Hello, What would be the most appropriate way to contribute bug fixes/patches/tests? I have a patch and tests that will fix the following: ------------------------------------ use HTML::Template; my $text = q{<TMPL_VAR foo ESCAPE=0>}; my $template = HTML::Template->new( scalarref => \$text, default_escape => "HTML" ); $template->param(foo => '<b>this is bold\n'); print $template->output; __DATA__ <b>this is bold\n ------------------------------------ Thanks, Tom |