There are times when FreeMarker's syntax sometimes gets in the way.
In these situations, it would be nice to be able to turn off the FreeMarker
parser for a portion of your template. The noparse tag lets
you do just that:
<p>The following Perl code iterates over a list:
<pre>
<noparse>
foreach $item @myList {
print "${item}\n";
}
</noparse>
</pre>
The above example shows some code that would otherwise be interpreted by the FreeMarker parser.
| Previous: Transformations | Next: Scalar Model |