Turning Off FreeMarker Parsing

There are times when FreeMarker's syntax 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:</p>

<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.