link-bracket-suffix

An unresolved bracket opener keeps its current line suffix literal until a complete link arrives

§16

Input

[draft](url)

Output AST

- type: Paragraph
  children:
    - type: Link
      kind: external
      href: url
      children:
        - type: Text
          value: draft

Streaming

unit: unicode-scalar
checkpoints:
  - at: 6
    ast:
      - type: Paragraph
        children:
          - type: Text
            value: "[draft"
    diagnostics: []
  - at: 8
    ast:
      - type: Paragraph
        children:
          - type: Text
            value: "[draft]("
    diagnostics: []