task-item-checked

Both - [x] and - [X] produce TaskItem with checked: true

§4.7.2 · source

Input

- [x] Write spec
- [X] Also checked

Output AST

- type: List
  kind: checklist
  start: null
  loose: false
  children:
    - type: TaskItem
      checked: true
      children:
        - type: Text
          value: Write spec
    - type: TaskItem
      checked: true
      children:
        - type: Text
          value: Also checked