Package-level declarations
Types
Link copied to clipboard
class BlockQuote(val type: BlockQuote.Type? = null, val attribution: InlineContent? = null, val children: List<Node>) : NestableNode
A block quote.
Link copied to clipboard
class Heading(val depth: Int, val text: InlineContent, val isDecorative: Boolean = false, val customId: String? = null) : TextNode, Identifiable, LocationTrackableNode
A heading defined via prefix symbols. A heading is identifiable, as it can be looked up in the document and can be referenced. It is also location trackable, meaning its position in the document hierarchy is determined, and possibly displayed.
Link copied to clipboard
A horizontal line (thematic break).
Link copied to clipboard
class LinkDefinition(val label: InlineContent, val url: String, val title: String?) : LinkNode, TextNode
Creation of a link reference.
Link copied to clipboard
A general paragraph.
Link copied to clipboard
class Table(val columns: List<Table.Column>, val caption: String? = null) : NestableNode, LocationTrackableNode, CaptionableNode
A table, consisting of columns, each of which has a header and multiple cells. A table is location-trackable since, if requested by the user, it may show a caption displaying its location-based label.