Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81145 views
1
{
2
"name": "Self-closing tags",
3
"options": {
4
"handler": {
5
6
},
7
"parser": {
8
9
}
10
},
11
"html": "<a href=http://test.com/>Foo</a><hr / >",
12
"expected": [
13
{
14
"event": "opentagname",
15
"data": [
16
"a"
17
]
18
},
19
{
20
"event": "attribute",
21
"data": [
22
"href",
23
"http://test.com/"
24
]
25
},
26
{
27
"event": "opentag",
28
"data": [
29
"a",
30
{
31
"href": "http://test.com/"
32
}
33
]
34
},
35
{
36
"event": "text",
37
"data": [
38
"Foo"
39
]
40
},
41
{
42
"event": "closetag",
43
"data": [
44
"a"
45
]
46
},
47
{
48
"event": "opentagname",
49
"data": [
50
"hr"
51
]
52
},
53
{
54
"event": "opentag",
55
"data": [
56
"hr",
57
{}
58
]
59
},
60
{
61
"event": "closetag",
62
"data": [
63
"hr"
64
]
65
}
66
]
67
}
68