Function unescape_html_entities

Source
pub fn unescape_html_entities<T: AsRef<str>>(text: T) -> String
Expand description

Un-escape an HTML escaped string.

§Examples

assert_eq!(unescape_html_entities("&lt;"), "<");