Skip to content

Commit 1d0d166

Browse files
committed
Fix unclosed documentation
1 parent 788dd5f commit 1d0d166

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Node-specific properties:
9999

100100
- **value**: The text content of the string.
101101
- **quote**: The quotation mark surrounding the string, either `"` or `'`.
102+
- **unclosed**: True when the string has no end. e.g. `"unclosed string `.
102103

103104
### div
104105

@@ -124,14 +125,13 @@ Node-specific properties:
124125

125126
### comment
126127

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+
135135
### function
136136

137137
A CSS function, e.g. `rgb(0,0,0)` or `url(foo.bar)`.
@@ -146,6 +146,7 @@ Additional properties:
146146
- **after**: Whitespace before the closing parenthesis and after the last argument,
147147
e.g. ` ` in `rgb(0,0,0 )`.
148148
- **nodes**: More nodes representing the arguments to the function.
149+
- **unclosed**: True when the parentheses has no end. e.g. `( function-without-end `.
149150

150151
Media features surrounded by parentheses are considered functions with an
151152
empty value. For example, `(min-width: 700px)` parses to these nodes:

0 commit comments

Comments
 (0)