We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A link.
public final class Link: Node
From the CommonMark Spec:
6.5 Links A link contains link text (the visible text), a link destination (the URI that is the link destination), and optionally a link title.
A link contains link text (the visible text), a link destination (the URI that is the link destination), and optionally a link title.
4.7 Link reference definitions
6.7 Autolinks
Node, Visitable
Node
Visitable
init(urlString:title:text:)
public convenience init(urlString: String, title: String? = nil, text string: String)
init(urlString:title:children:)
public convenience init(urlString: String?, title: String?, children: [Inline & Node] = [])
init(urlString:title:_:)
public convenience init(urlString: String?, title: String?, _ builder: () -> InlineConvertible)
accept(visitor:)
public func accept<T: Visitor>(visitor: T)