in reply to Re: HTML::Template vs. Template::Toolkit vs. ??
in thread HTML::Template vs. Template::Toolkit vs. ??

FYI, Template::Stash::HTML::Entities does what default_escape does.
  • Comment on Re^2: HTML::Template vs. Template::Toolkit vs. ??

Replies are listed 'Best First'.
Re^3: HTML::Template vs. Template::Toolkit vs. ??
by tinita (Parson) on Jan 08, 2009 at 18:00 UTC
    what I don't quite like about that is, that if you need unescaped data, you have to decode it, so that produces extra work (encoding and directly after that decoding again), while in HTML::Template(::Compiled) no escaping at all happens if you use ESCAPE=0.
Re^3: HTML::Template vs. Template::Toolkit vs. ??
by moritz (Cardinal) on Jan 08, 2009 at 07:28 UTC
    Thank you, that looks nice (although I don't see an example of how the decoding works). The last time I asked, nobody had a convenient answer, so I guess things are improving still (which is a good sign).