tablecolumns
.tablecolumns of:{MarkdownContent} -> Iterable<Iterable<out Any>>
Content copied to clipboard
Retrieves all columns from a table as a collection of collections.
Example:
.tablecolumns
| Name | Age | City |
|------|-----|------|
| John | 25 | NY |
| Lisa | 32 | LA |
| Mike | 19 | CHI |
Content copied to clipboard
Result:
- - John
- Lisa
- Mike
- - 25
- 32
- 19
- - NY
- LA
- CHI
Content copied to clipboard
Return
the extracted cells, grouped by column
Parameters
of
table to extract the columns from