LinkNode

interface LinkNode : Node

A general link node.

See also

Inheritors

Properties

Link copied to clipboard
abstract val label: InlineContent

Inline content of the displayed label.

Link copied to clipboard
abstract val title: String?

Optional title.

Link copied to clipboard
abstract val url: String

URL this link points to.

Functions

Link copied to clipboard
abstract fun <T> accept(visitor: NodeVisitor<T>): T

Accepts a visitor.

Link copied to clipboard