summaryrefslogtreecommitdiffstats
path: root/vendor/gsgdt/src/util.rs
blob: f6fcf08f652db9e2fe8077273978d6211b3bb97b (plain)
1
2
3
4
5
6
pub fn escape_html(s: &str) -> String {
    s.replace("&", "&")
        .replace("\"", """)
        .replace("<", "&lt;")
        .replace(">", "&gt;")
}