HTML

HTML

[html(CssClass):data]

Renders data without any conversion for special HTML characters. Useful for embedding raw HTML into output.

html tag can be embedded in other tags, but the output will be encoded as if it were text. To use html tag as intended, it must be a top level tag.

Note: IWML is designed to be used with rendering engines other than HTML in the future. In such implementations the HTML tag may not be supported.

Example:

[html:<div id="Test">Bold Text</div>]

or

[html]<div id="Test">Bold Text</div>

The CssClass parameter is optional. If not specified the data will be output unchanged. If specified, the data will be wrapped in a span tag with the CssClass parameter as the class attribute.

[html(bluebg)]Hello

or

[html(bluebg):Hello]

Will render as:

<span class="bluebg">Hello</span>