Table

data class Table(val alignments: List<Block.Alignment>, val header: Block.TableRow, val body: List<Block.TableRow>) : Block

A GFM table (extension).

Constructors

Link copied to clipboard
constructor(alignments: List<Block.Alignment>, header: Block.TableRow, body: List<Block.TableRow>)

Properties

Link copied to clipboard

per-column alignment derived from the delimiter row.

Link copied to clipboard

zero or more data rows.

Link copied to clipboard

the header row.