1pub fn escape_html(s: &str) -> String {
2 sString.replace(from:"&", to:"&")
3 .replace("\"", """)
4 .replace("<", "&lt;")
5 .replace(">", "&gt;")
6}
7