1/// Helper to wrap an XML body with the standard XML declaration. 2pub fn wrap_xml(inner: &str) -> String { 3 format!("<?xml version=\"1.0\" encoding=\"UTF-8\"?>{inner}") 4}