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
Version | Status | Notes |
10.0 | No Change | Carried over from Panorama 6.0. |