Synopsis
<#noparse>
  ...
</#noparse>
          Camel case name variant: noParse
Description
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>
  <#list animals 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>
     