Hi,
I really did try to find an answer, but let's say I have something like this
my $form = {
first_name_error => "[% first_name_required_error %]",
first_name_required_error => "Your first name is required",
};
then in my template I have
[% first_name_error %]
which interpolates to [% first_name_required_error %], but then stops there.
How do I go about ensuring that all my tags get parsed, without having do
something like
while($content =~ /[%/) {
process content
}
in my code?
Thanks,
Earl
_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates