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