Format Table #
This file provides a simple function for formatting a two-dimensional array of Strings
into a markdown-compliant table.
def
formatTable
(headers : Array String)
(table : Array (Array String))
(alignments : Option (Array Alignment) := none)
:
Render a two-dimensional array of Stringsinto a markdown-compliant table.
`headersis a list of column headers,
`tableis a 2D array of cell contents,
`alignments` describes how to align each table column (default: left-aligned)