File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -285,16 +285,15 @@ Yields:
285
285
286
286
Loose ` ListItem ` s often contain more than one block-level elements.
287
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.
288
+ A checked property exists on ` ListItem ` s, set to ` true ` (when checked),
289
+ ` false ` (when unchecked), or ` null ` (when not containing a checkbox).
290
+ See [ Task Lists on GitHub] [ task-list ] for information.
292
291
293
292
``` idl
294
293
interface ListItem <: Parent {
295
294
type: "listItem";
296
295
loose: true | false;
297
- checked: true | false | null | undefined ;
296
+ checked: true | false | null;
298
297
}
299
298
```
300
299
You can’t perform that action at this time.
0 commit comments