Function htmlEscape
Returns the HTML escaped version of a given string.
string htmlEscape(R)
(
R str
) @trusted
if (isInputRange!R);
Example
assert(htmlEscape(`"Hello", <World>!`) == `"Hello", <World>!`);