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

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 08 07:39:58 2022 +0000 (21 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.