pub fn escape_text(s: &str) -> StringExpand description
Escape a string for use in XML text content (&, <, >, ", ').
Uses quick_xml::escape::escape which covers all five XML special chars,
producing &, <, >, ", and ' as needed.