quote-block-with-ordered-list

An ordered list inside a QuoteBlock is parsed normally; consecutive > lines with ordered markers form a tight ordered List

§4.6 · source

Input

> 1. first
> 2. second

Output AST

- type: QuoteBlock
  children:
    - type: List
      kind: numbered
      loose: false
      start: 1
      children:
        - type: ListItem
          children:
            - type: Text
              value: first
        - type: ListItem
          children:
            - type: Text
              value: second