LinkNode

interface LinkNode : Node

A general link node.

See also

Inheritors

Properties

Link copied to clipboard
abstract val fileSystem: FileSystem?

Optional file system where this link is defined, used for resolving relative paths.

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
Link copied to clipboard

Retrieves the stored media associated with this node, if any.

Link copied to clipboard
fun LinkNode.setResolvedUrl(context: MutableContext, resolvedUrl: String)

Registers the resolved path of this node within the document handled by context.

Link copied to clipboard