Format Table #
This file provides a simple function for formatting a two-dimensional array of String
s
into a markdown-compliant table.
Equations
- instInhabitedAlignment = { default := Alignment.left }
Align a String
s
to the left, right, or center within a field of width width
.
Equations
- s.justify Alignment.left width = String.rightpad width ' ' s
- s.justify Alignment.right width = String.leftpad width ' ' s
- s.justify Alignment.center width = String.replicate ((width - s.length) / 2) ' ' ++ s ++ String.replicate (width - s.length - (width - s.length) / 2) ' '
Instances For
def
formatTable
(headers : Array String)
(table : Array (Array String))
(alignments : optParam (Option (Array Alignment)) none)
:
Render a two-dimensional array of String
sinto 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)
Equations
- One or more equations did not get rendered due to their size.