.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / domhandler / test / cases / 19-ignore_empty_tags.json
1 {
2   "name": "Ignore empty tags (xml mode)",
3   "options": {
4     "xmlMode": true
5   },
6   "html": "<link>text</link>",
7   "expected": [
8     {
9       "type": "tag",
10       "name": "link",
11       "attribs": {},
12       "children": [
13         {
14           "data": "text",
15           "type": "text"
16         }
17       ]
18     }
19   ]
20 }