summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/domhandler/test/cases/19-ignore_empty_tags.json
blob: fe59cf913edf59e15da9604cb5b0c41a2aa45ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name": "Ignore empty tags (xml mode)",
  "options": {
    "xmlMode": true
  },
  "html": "<link>text</link>",
  "expected": [
    {
      "type": "tag",
      "name": "link",
      "attribs": {},
      "children": [
        {
          "data": "text",
          "type": "text"
        }
      ]
    }
  ]
}