1 2 3 4 5 6 7 8 9
pub mod html { use std::borrow::Cow; use html_escape::encode_safe; pub fn unsafe_string(value: &str) -> Cow<str> { encode_safe(value) } }