image-inline

alt in inline context produces ImageInline with alt as Inline[]

§5.9

Input

See ![a cat](cat.jpg) here.

Output AST

- type: Paragraph
  children:
    - type: Text
      value: "See "
    - type: ImageInline
      alt:
        - type: Text
          value: a cat
      src: cat.jpg
    - type: Text
      value: " here."