noparse

Page Contents

Synopsis

<#noparse>
  ...
</#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:

Example:
--------

<#noparse>
  <#list animals as animal>
  <tr><td>${animal.name}<td>${animal.price} Euros
  </#list>
</#noparse>  

will output:

Example:
--------

  <#list animals as animal>
  <tr><td>${animal.name}<td>${animal.price} Euros
  </#list>
   
FreeMarker Manual -- For FreeMarker 2.3.22
HTML generated: 2015-02-28 21:34:03 GMT
Edited with XMLMind XML Editor
Here!