FreeMarker will not search FTL tags and interpolations and other special character sequences in the body of this directive, except the noparse end-tag.
Example:
Template
Example:
--------
<#noparse><#listanimals as animal><tr><td>${animal.name}<td>${animal.price} Euros
</#list></#noparse>
Output
Example:
--------
<#list animals as animal>
<tr><td>${animal.name}<td>${animal.price} Euros
</#list>