A wrapper for escaping sensitive characters in html. ```rust use orgize::export::HtmlEscape as Escape; assert_eq!(format!("{}", Escape("< < <")), "< < <"); assert_eq!( format!("{}", Escape(" alert('Hello XSS') ")), "<script>alert('Hello XSS')</script>" ); ```
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected