.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / domhandler / test / cases / 11-text_outside_tags.json
1 {
2   "name": "Text outside tags",
3   "options": {},
4   "html": "Line one\n<br>\nline two",
5   "expected": [
6     {
7       "data": "Line one\n",
8       "type": "text",
9       "prev": null,
10       "next": {
11         "type": "tag",
12         "name": "br",
13         "attribs": {}
14       }
15     },
16     {
17       "type": "tag",
18       "name": "br",
19       "attribs": {},
20       "prev": {
21         "data": "Line one\n",
22         "type": "text"
23       },
24       "next": {
25         "data": "\nline two",
26         "type": "text"
27       }
28     },
29     {
30       "data": "\nline two",
31       "type": "text",
32       "prev": {
33         "type": "tag",
34         "name": "br",
35         "attribs": {}
36       },
37       "next": null
38     }
39   ]
40 }