htmlitalic(
TEXT
)

The htmlitalic( function takes the text and adds <i> and </i> tags to it.


Parameters

This function has one parameter:

text – the original text.


Description

Takes the original text and adds <i> and </i> tags to it. If the text is later displayed as part of an HTML page, it will be displayed in italic.

htmlitalic("hello world") ☞ <i>hello world</i>

Note: This function is equivalent to:

"<i>"+thetext+"</i>"

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.