innovationDriveApp/node_modules/htmlparser2/test/Events/20-xml_entities.json
2018-07-08 19:21:40 +10:00

16 lines
No EOL
297 B
JSON

{
"name": "xml entities",
"options": {
"handler": {},
"parser": {"decodeEntities": true, "xmlMode": true}
},
"html": "&>&amp<üa&#x62c&#100",
"expected": [
{
"event": "text",
"data": [
"&>&amp<&uuml;a&#x62c&#100"
]
}
]
}