@@ -99,6 +99,7 @@ Node-specific properties:
99
99
100
100
- ** value** : The text content of the string.
101
101
- ** quote** : The quotation mark surrounding the string, either ` " ` or ` ' ` .
102
+ - ** unclosed** : True when the string has no end. e.g. ` "unclosed string ` .
102
103
103
104
### div
104
105
@@ -124,14 +125,13 @@ Node-specific properties:
124
125
125
126
### comment
126
127
127
- A CSS comment starts with ` /* ` and ends with ` */ `
128
-
129
- Node-specific properties:
130
-
131
- - ** value** : The comment value without ` /* ` and ` */ `
132
- - ** unclosed** : True when the comment has no end.
133
- e.g. ` /* comment without an end ` .
134
-
128
+ A CSS comment starts with ` /* ` and ends with ` */ `
129
+
130
+ Node-specific properties:
131
+
132
+ - ** value** : The comment value without ` /* ` and ` */ `
133
+ - ** unclosed** : True when the comment has no end. e.g. ` /* comment without an end ` .
134
+
135
135
### function
136
136
137
137
A CSS function, e.g. ` rgb(0,0,0) ` or ` url(foo.bar) ` .
@@ -146,6 +146,7 @@ Additional properties:
146
146
- ** after** : Whitespace before the closing parenthesis and after the last argument,
147
147
e.g. ` ` in ` rgb(0,0,0 ) ` .
148
148
- ** nodes** : More nodes representing the arguments to the function.
149
+ - ** unclosed** : True when the parentheses has no end. e.g. ` ( function-without-end ` .
149
150
150
151
Media features surrounded by parentheses are considered functions with an
151
152
empty value. For example, ` (min-width: 700px) ` parses to these nodes:
0 commit comments