We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
undefined
checked
1 parent b30949e commit fbf003aCopy full SHA for fbf003a
readme.md
@@ -285,16 +285,15 @@ Yields:
285
286
Loose `ListItem`s often contain more than one block-level elements.
287
288
-When in `gfm: true` mode, a checked property exists on `ListItem`s,
289
-either set to `true` (when checked), `false` (when unchecked), or `null`
290
-(when not containing a checkbox). See [Task Lists on GitHub][task-list]
291
-for information.
+A checked property exists on `ListItem`s, set to `true` (when checked),
+`false` (when unchecked), or `null` (when not containing a checkbox).
+See [Task Lists on GitHub][task-list] for information.
292
293
```idl
294
interface ListItem <: Parent {
295
type: "listItem";
296
loose: true | false;
297
- checked: true | false | null | undefined;
+ checked: true | false | null;
298
}
299
```
300
0 commit comments