Package-level declarations

Functions

Link copied to clipboard
.tablebyrows headers:{List<Any> = emptyList()} rows:{List<Iterable<out Any>>} -> Node

Generates a table from a list of rows, where each row is a list of cell values. Optionally, headers can be provided for the columns.

Link copied to clipboard
.tablecolumn column:{Int} of:{MarkdownContent} -> Iterable<Any>

Retrieves a specific column from a table as a collection of values.

Link copied to clipboard
.tablecolumns of:{MarkdownContent} -> Iterable<Iterable<out Any>>

Retrieves all columns from a table as a collection of collections.

Link copied to clipboard
.tablecompute column:{Int}
compute:{Lambda}
table:{MarkdownContent}
-> Node

Performs a computation on a specific column of a table, appending the result to a new cell in the bottom.

Link copied to clipboard
.tablefilter column:{Int}
filter:{Lambda}
table:{MarkdownContent}
-> Node

Filters the rows of a table based on a boolean expression on a specific column.

Link copied to clipboard
.tablesort column:{Int}
order:{TableSortOrder = TableSortOrder.ASCENDING}
table:{MarkdownContent}
-> Node

Sorts a table based on the values of a column.