htmlAllEscape

Returns the HTML escaped version of a given string (escapes every character).

@trusted
string
htmlAllEscape
(
R
)
(
R str
)
if (
isInputRange!R
)

Examples

assert(htmlAllEscape("Hello!") == "Hello!");

Meta