comment-block-in-list-item

CommentBlock is recognized inside a ListItem, where container indentation is stripped before classification

§2.3 · source

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