DOKK / manpages / debian 12 / rex / Rex::Template::NG.3pm.en
Rex::Template::NG(3pm) User Contributed Perl Documentation Rex::Template::NG(3pm)

Rex::Template::NG - simple template engine (replacing Rex::Template)

 use Rex::Template::NG;
 my $template = Rex::Template->new;
 print $template->parse($content, \%template_vars);
 print $template->parse($content, @template_vars);

This is intended as a replacement of the original Rex::Template, therefore its interface and syntax are identical. The main differences are:

  • produces "more correct" output in case when comping is required
  • gives better diagnostics in case of errors

It is recommended to use this module instead of Rex::Template.

It prints the whole template as "INFO" level messages, and then a message about the problem with its context and line number (e.g. "Unknown variable name $var on code line: ... line: ...").

2023-03-06 perl v5.36.0