class markdown::Link

sys::Obj
  markdown::Node
    markdown::LinkNode
      markdown::Link

@Js

Source

A link with a destination and an optional title; the link text is in child nodes

Example for an inline link in a CommonMark document

[link](/uri "title")

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