.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / domhandler / test / cases / 20-template_script_tags.json
1 {
2   "name": "Template script tags",
3   "options": {},
4   "html": "<script type=\"text/template\"><h1>Heading1</h1></script>",
5   "expected": [
6     {
7       "type": "script",
8       "name": "script",
9       "attribs": {
10         "type": "text/template"
11       },
12       "children": [
13         {
14           "data": "<h1>Heading1</h1>",
15           "type": "text"
16         }
17       ]
18     }
19   ]
20 }