pub fn decode_html_entities(data: &str) -> Result<String, DecodeErrKind>
Expand description
Decodes a string with HTML entities.
ยงExamples
use nutek_encode_lib::encoder;
let decoded = encoder::decode_html_entities("hello & world").unwrap();
assert_eq!(decoded, "hello & world");