wok view perl-text-template/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents
children
line source
1 This is a library for generating form letters, building HTML pages,
2 or filling in templates generally.
3 A "template" is a piece of text that has little Perl programs embedded
4 in it here and there.
5 When you "fill in" a template, you evaluate the little programs and
6 replace them with their values.
8 You can store a template in a file outside your program.
9 People can modify the template without modifying the program.
10 You can separate the formatting details from the main code, and put
11 the formatting parts of the program into the template.
12 That prevents code bloat and encourages functional separation.