Text::Template - Expand template text with embedded Perl https://www.cpan.org
Go to file
2024-01-06 09:48:56 +01:00
perl-Text-Template.spec automatic version update by autodist [release 1.61-1mamba;Sat Apr 30 2022] 2024-01-06 09:48:56 +01:00
README.md automatic version update by autodist [release 1.46-1mamba;Sat Feb 23 2013] 2024-01-06 09:48:55 +01:00

perl-Text-Template

This is a library for generating form letters, building HTML pages, or filling in templates generally. A template' is a piece of text that has little Perl programs embedded in it here and there. When you fill in' a template, you evaluate the little programs and replace them with their values.

You can store a template in a file outside your program. People can modify the template without modifying the program. You can separate the formatting details from the main code, and put the formatting parts of the program into the template. That prevents code bloat and encourages functional separation.