Fix #59 (& issue)

This commit is contained in:
Alex Auvolat
2021-04-27 23:10:43 +02:00
parent e01f74e763
commit 642186c530
+2 -1
View File
@@ -2,7 +2,8 @@
/// Escape &str for xml inclusion
pub fn xml_escape(s: &str) -> String {
s.replace("<", "&lt;")
s.replace("&", "&amp;")
.replace("<", "&lt;")
.replace(">", "&gt;")
.replace("\"", "&quot;")
}