in reply to Re: Re: Re: There's a level in Hell reserved for ________
in thread There's a level in Hell reserved for ________

A couple of times I have embedded extremely simple templating code into projects I have worked on (usually for code generation purposes). Is this wrong in general in your view? My own justification was that it was simpler to write the 15~20 lines of code to handle what I wanted than it was to use one of the pre-existing modules out there. Just getting aquainted with the API of the module would have taken longer than writing the code.

To turn this into a question, assuming you need a no-frills, quick, light and easy templating system what would you use? A simple

$tags=join "|",map {quotemeta $_} keys %tags; 1 while s/\b($tags)\b/$tags{$1}/g;

or a templating module?


---
demerphq


Replies are listed 'Best First'.
Re: Re: Re: Re: Re: There's a level in Hell reserved for ________
by perrin (Chancellor) on Mar 04, 2003 at 20:46 UTC
    I would use Text::Template. It is very simple, fast enough, handles all the typical templating bugaboos (escaping, for example), and provides plenty of room for growth before you will bump your head and need a different module.