imageblock-not-only-segment-falls-back

An image line carrying trailing content fails the only-segment rule and falls back to a Paragraph with an ImageInline — no content is dropped

§4.9

Input

![a](b) trailing text

Output AST

- type: Paragraph
  children:
    - type: ImageInline
      src: b
      alt:
        - type: Text
          value: a
    - type: Text
      value: " trailing text"