CaptionableNode

interface CaptionableNode : Node

A node that may have a caption, such as a com.quarkdown.core.ast.base.block.Table or a com.quarkdown.core.ast.quarkdown.block.ImageFigure. The caption is a plain text string, which does not accept further inline formatting.

Inheritors

Properties

Link copied to clipboard
abstract val caption: String?

The optional caption.

Functions

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

Accepts a visitor.

Link copied to clipboard