mirror of https://github.com/sveltejs/svelte
Merge pull request #318 from sveltejs/implicitly-closed-elements
handle implicitly closed elementspull/319/head
commit
c2275f3064
@ -0,0 +1,5 @@
|
|||||||
|
<ul>
|
||||||
|
<li>a
|
||||||
|
<li>b
|
||||||
|
<li>c
|
||||||
|
</ul>
|
@ -0,0 +1,66 @@
|
|||||||
|
{
|
||||||
|
"hash": 3806276940,
|
||||||
|
"html": {
|
||||||
|
"start": 0,
|
||||||
|
"end": 31,
|
||||||
|
"type": "Fragment",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"start": 0,
|
||||||
|
"end": 31,
|
||||||
|
"type": "Element",
|
||||||
|
"name": "ul",
|
||||||
|
"attributes": [],
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"start": 6,
|
||||||
|
"end": 13,
|
||||||
|
"type": "Element",
|
||||||
|
"name": "li",
|
||||||
|
"attributes": [],
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"start": 10,
|
||||||
|
"end": 13,
|
||||||
|
"type": "Text",
|
||||||
|
"data": "a"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"start": 13,
|
||||||
|
"end": 20,
|
||||||
|
"type": "Element",
|
||||||
|
"name": "li",
|
||||||
|
"attributes": [],
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"start": 17,
|
||||||
|
"end": 20,
|
||||||
|
"type": "Text",
|
||||||
|
"data": "b"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"start": 20,
|
||||||
|
"end": 26,
|
||||||
|
"type": "Element",
|
||||||
|
"name": "li",
|
||||||
|
"attributes": [],
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"start": 24,
|
||||||
|
"end": 26,
|
||||||
|
"type": "Text",
|
||||||
|
"data": "c\n"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"css": null,
|
||||||
|
"js": null
|
||||||
|
}
|
Loading…
Reference in new issue