pub fn escape_html(str: &str) -> Cow<'_, str>
Escape < > " & with corresponding HTML entities;
< > " &
assert_eq!(escape_html("&\""), "&"");