Function htmlAllEscape
Returns the HTML escaped version of a given string (escapes every character).
string htmlAllEscape(R)
(
R str
) @trusted
if (isInputRange!R);
Example
assert(htmlAllEscape("Hello!") == "Hello!");