pagebreak-inside-quoteblock

A blank-line-surrounded --- inside a QuoteBlock is not a PageBreak; it parses as a literal paragraph and CDN-0017 is emitted

§4.10

Input

> para
>
> ---
>
> after

Diagnostics

- code: CDN-0017
  level: warning

Output AST

- type: QuoteBlock
  children:
    - type: Paragraph
      children:
        - type: Text
          value: para
    - type: Paragraph
      children:
        - type: Text
          value: ---
    - type: Paragraph
      children:
        - type: Text
          value: after