blob: 156247edf808e09cc06c50b6cb6c08da22bff8ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
note:
┌─ test.html:1:1
│
1 │ this is a tag: <h1>test</h1>
│ ^^ ^^ end tag
│ │
│ start tag
2 │
3 │ tags can have attributes: <div id = foobar>
│ ^^ ^^^^^^ attr value
│ │
│ attr name
4 │
5 │ Attribute values can be quoted: <input name = 'age' type = "number">
│ ^^^^ ^^^ ^^^^ ^^^^^^ attr value
│ │ │ │
│ │ │ attr name
│ │ attr value
│ attr name
|