wok diff perl-text-template/description.txt @ rev 24889

grub2: sed command corrected
author Hans-G?nter Theisgen
date Sat Apr 02 17:34:21 2022 +0100 (2022-04-02)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-text-template/description.txt	Sat Apr 02 17:34:21 2022 +0100
     1.3 @@ -0,0 +1,12 @@
     1.4 +This is a library for generating form letters, building HTML pages,
     1.5 +or filling in templates generally.
     1.6 +A "template" is a piece of text that has little Perl programs embedded
     1.7 +in it here and there.
     1.8 +When you "fill in" a template, you evaluate the little programs and
     1.9 +replace them with their values.
    1.10 +
    1.11 +You can store a template in a file outside your program.
    1.12 +People can modify the template without modifying the program.
    1.13 +You can separate the formatting details from the main code, and put
    1.14 +the formatting parts of the program into the template.
    1.15 +That prevents code bloat and encourages functional separation.