list-blank-indented-absorbed

Blank line followed by an indented (col > 0) marker is absorbed by the list parser; list continues and is marked loose

§4.7

Input

    - item A

    - item B

Output AST

- type: List
  kind: bullet
  loose: true
  children:
    - type: ListItem
      children:
        - type: Text
          value: item A
    - type: ListItem
      children:
        - type: Text
          value: item B