pub fn decode_chars(chars: &[char]) -> Vec<char, Global>
Expand description

Decode character list, replace the entity characters into a unicode character.

Examples

use htmlentity::entity::*;

let char_list = vec!['<'];
assert_eq!(decode_chars(&"&lt;".chars().collect::<Vec<char>>()), char_list);
assert_eq!(decode_chars(&"&#60;".chars().collect::<Vec<char>>()), char_list);
assert_eq!(decode_chars(&"&#x3c;".chars().collect::<Vec<char>>()), char_list);