tablecolumns

.tablecolumns of:{MarkdownContent} -> Iterable<Iterable<out Any>>

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 |

Result:

- - John
- Lisa
- Mike

- - 25
- 32
- 19

- - NY
- LA
- CHI

Return

the extracted cells, grouped by column

Parameters

of

table to extract the columns from