markdown_table
Description
Example with list and header
header := ['Last Name', 'First Name']
data := [['Croisé', 'Thorben'], ['Zivic', 'Tijana'], ['Balzer', 'Alexander']]
markdown_table(data, header)| Last Name | First Name |
| --------- | ---------- |
| Croisé | Thorben |
| Zivic | Tijana |
| Balzer | Alexander |Example with dictionaries
data := [
{'Last Name': 'Croisé', 'First Name': 'Thorben'},
{'Last Name': 'Zivic', 'First Name': 'Tijana'},
{'Last Name': 'Balzer', 'First Name': 'Alexander'},
]
markdown_table(data)Example with alignment options
Last updated
Was this helpful?
