Converts a string in plain text to the HTML equivalent that displays appropriately in an HTML page, by replacing reserved characters with their escaped counterparts.
toHtml( text )
text: (Text) The string of text to be converted to HTML
Text
This function is not necessary when using certain allowed HTML tags, which are always allowed in Expressions.
You can experiment with this function in the test box below.
Test Input
toHTML("Hello <br> World")
returns Hello <br> World
On This Page