tablecolumn
.tablecolumn column:{Int} of:{MarkdownContent} -> Iterable<Any>
Content copied to clipboard
Retrieves a specific column from a table as a collection of values.
Example:
.tablecolumn {2}
| Name | Age | City |
|------|-----|------|
| John | 25 | NY |
| Lisa | 32 | LA |
| Mike | 19 | CHI |
Content copied to clipboard
Result:
- 25
- 32
- 19
Content copied to clipboard
Return
the extracted cells
Parameters
column
index of the column (starting from 1)
of
table to extract the column from