comment-block-in-list-item

CommentBlock is recognized inside a ListItem at the item's effective column

§2.3

Input

- item one
  ###
  todo
  ###
- item two

Output AST

- type: List
  kind: bullet
  children:
    - type: ListItem
      children:
        - type: Text
          value: item one
        - type: CommentBlock
          text: |
            todo
    - type: ListItem
      children:
        - type: Text
          value: item two