list-intraitem-blank

Blank line + col-0 marker resets the list; blank line + indented content absorbed making item block-mode and list loose

§4.7

Input

- First item

- Second item

  This starts a new paragraph inside item two.

Output AST

- type: List
  kind: bullet
  loose: false
  children:
    - type: ListItem
      children:
        - type: Text
          value: First item
- type: List
  kind: bullet
  loose: true
  children:
    - type: ListItem
      children:
        - type: Paragraph
          children:
            - type: Text
              value: Second item
        - type: Paragraph
          children:
            - type: Text
              value: This starts a new paragraph inside item two.