Text::Templar is a document-generation object class.
SYNOPSIS
use Text::Templar;
my $template = < title >This is the title: < % METHOD title % >< /title >< /head >
< body >
< % METHOD body % >
< address >
< % METHOD footer % >
< /address >
< /body >
< /html >
EOF
my $templateObject = new Text::Templar
[ $template ];
$templateObject->title( "The Rest of the Story" );
$templateObject->body( @content );
$templateObject->footer( "Page 1" );
print $templateObject->render;
Product's homepage
Requirements:
· Perl
· Class::Translucent
· IO::File
· IO::Handle
· Scalar::Util
· Data::Dumper
· Text::Templar::Parser
· Text::Templar::Exceptions