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

Add realtek.ko need by r8169.ko, fix post_install efivar
author Stanislas Leduc <shann@slitaz.org>
date Thu Mar 07 12:40:12 2024 +0000 (8 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.