A string that is properly formatted HTML.
This is used to ensure proper HTML escaping.
|
$add(text)
ZUT.Base @public | Add text to the Html, it will be HTML-escaped.
|
|
$addText(text)
ZUT.Html @public | Add text to the Html, it will be conservatively HTML-escaped.
|
|
$add(html)
ZUT.Html @public | Add html to this Html. Does not apply any escaping.
|
|
$add(url)
ZUT.Html @public | Add url to this Html. It will show up as plain text.
|
|
$addData(html) @public | Inside pre and title do escape html
|
|
$addData(text) @public | Inside pre and title escape string like in Html.
|
|
$addData(text) @public | Inside pre and title escape Url like in Html.
|
|
$addAttributes(attributes) @public | Inside a tag, add Attributes directly.
|
|
$addCss(style) @public | Inside a style tag, add CSS directly.
|
|
|
fromSafeString(safeContent)
ZUT.Html @public | Create a ZUT.Html object from a string that contains safe, already
escaped HTML.
|
|
Inherited from ZUT.Base:
|
|
NEW() @public |
|
$addUNESCAPED(safeContent)
ZUT.Base @public | Add safeContent to the section, it will not be escaped.
|
|
$add(number)
ZUT.Base @public | Add number to the item as a string.
|
|
$add(number)
ZUT.Base @public | Add number to the item as a string.
|
|
$ToString()
string @public | Return the concatenated result.
|
|