class markdown::Image

sys::Obj
  markdown::Node
    markdown::LinkNode
      markdown::Image

@Js

Source

An image

![foo](/url "title")

The corresponding LinkNode would look like this:

  • destination => /uri
  • title => "title"
  • A Text child node with literal that returns "link"

Note that the text in the link can contain inline formatting, so it could also contain an Image or Emphasis, etc.

make

new make(Str destination, Str? title := null)

Source