blob: 7127ebc624753d8dc5cad39e12eaffe7e4a6300f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
note:
┌─ test.html:3:17
│
3 │ Here is a tag: <strong >very cool</strong>
│ ^^^^^^ ^^^^^^ EndTag
│ │
│ StartTag
4 │
5 │ Tags can have attributes: <div id = foo >...</div>
│ ^^ ^^^ attribute value
│ │
│ attribute name
6 │
7 │ Attribute values can be quoted: <input name = 'age' type = "number">
│ ^^^ ^^^^^^ in double quotes
│ │
│ in single quotes
|