Types.Table
type alignment =
| Left
| Center
| Right
| Default
type 'a t = {
data : ('a * [ `Header | `Data ]) list list;
align : alignment list;
}