> From: Saradhi N.C <[EMAIL PROTECTED]>
>
> I have a slight problem using the Template.pm module.
>
> In my template I have used in several places
> [%NEXT%]

As others have pointed out, NEXT is a reserved word for TT.
If you cannot get around using [%NEXT%] in your templates,
you may want to consider to use different START_TAG and
END_TAGs in for your TT markup, which would make [%NEXT%]
just plain text from the point of view of the template
processor. See the section on these configuration values in
Template::Manual::Config.

Example template would then be:
   Hello <+ user.name +>
   [%NEXT%]
   How do you do?

Output after processing:
   Hello Saradhi
   [%NEXT%]
   How do you do?

HTH, Hans

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to