list-multiline-item

A non-marker continuation line absorbed by the list parser extends the current item; soft break folded to zero, lines concatenate directly

§4.7 · source

Input

- First item
  continues here
- Second item

Output AST

- type: List
  kind: bullet
  children:
    - type: ListItem
      children:
        - type: Text
          value: First itemcontinues here
    - type: ListItem
      children:
        - type: Text
          value: Second item