pagebreak-inside-namedblock

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

§4.10

Input

:::note
before

---

after
:::

Diagnostics

- code: CDN-0017
  level: warning

Output AST

- type: NamedBlock
  name: note
  children:
    - type: Paragraph
      children:
        - type: Text
          value: before
    - type: Paragraph
      children:
        - type: Text
          value: ---
    - type: Paragraph
      children:
        - type: Text
          value: after