1pub fn anti_xss(input: &str) -> String { 2 input 3 .replace("&", "&") 4 .replace("<", "<") 5 .replace(">", ">") 6 .replace("\"", """) 7}