FredTek

Display Field Properties - HtmlEscaping

HtmlEscaping causes ND to treat the text that appears in the display field as text, regardless of what the display field contains. Thus, if a substring in the display field is a valid HTML tags, the tag is displayed as text rather than as HTML. The default value is True.

Example:
The field contains "This is my page<BR><HR>This is the header".

If HtmlEscaping is set to true, the following will appear on the HTML page:

This is my page<BR><HR>This is the header

If HtmlEscaping is set to false, the following will appear on the HTML page:

This is my page


This is the header