At 02:18 PM 12/30/2001 -0600, Ryan Thompson wrote:
>Any thoughts?

Have a look at this document that compares most of the template engines out 
there. http://perl.apache.org/features/tmpl-cmp.html

I think you'll have an easy time converting your homegrown templates over 
to Template Toolkit, and, since it's fast, it should meet your needs.

here's your example using tt's syntax.

<p>My name is: [% name %]</p>
[% IF age %]
   <p>My age is: [% age %]</p>
[% END %]

Good luck,
Kenny

Reply via email to