Table
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.
Parameters
columns
columns of the table. Each column has a header and multiple cells
caption
optional caption of the table (Quarkdown extension)
Types
Link copied to clipboard
Text alignment of a Column.
Link copied to clipboard
A single cell of a table.
Link copied to clipboard
data class Column(val alignment: Table.Alignment, val header: Table.Cell, val cells: List<Table.Cell>)
A column of a table.
Properties
Functions
Link copied to clipboard
Returns a sequence of all nodes in the tree, where this is the root node. The sequence is generated by traversing the tree in depth-first order. The root node is excluded from the sequence.
Link copied to clipboard
fun LocationTrackableNode.formatLocation(context: Context, format: (DocumentNumbering) -> NumberingFormat?): String?
Link copied to clipboard
Link copied to clipboard