pub fn html_escape(c: u8) -> Option<&'static [u8]> { match c as char { '>' => Some(b">"), '<' => Some(b"<"), '&' => Some(b"&"), '\'' => Some(b"'"), '"' => Some(b"""), _ => None, } }