in reply to Partially process'ing Template::Toolkit templates

unlinker:

I can think of a couple ways to get that result: First, you could put the other parts of your template in a different include file, and INSERT them. Since TT isn't going to do any processing on the inserted files, you will then have a template that you want.

----file1---- Hi [% name %], some text here... ----file2---- Some more text here... ----template---- [% INSERT file1 %] [% INCLUDE inner.tt %] [% INSERT file2 %]

Alternatively, you could escape out the template sequences in your main template, then when TT processes it, you'd have the template instructions ready.

It seems odd that you would need that, though. But I've never used it, so it wouldn't be obvious to me in any case.

...roboticus

When your only tool is a hammer, all problems look like your thumb.