.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / domhandler / test / cases / 08-extra_spaces_in_tag.json
1 {
2   "name": "Extra spaces in tag",
3   "options": {},
4   "html": "<font\t\n size='14' \n>the text</\t\nfont\t \n>",
5   "expected": [
6     {
7       "type": "tag",
8       "name": "font",
9       "attribs": {
10         "size": "14"
11       },
12       "children": [
13         {
14           "data": "the text",
15           "type": "text"
16         }
17       ]
18     }
19   ]
20 }