Module Block.Table

type sep = [ `Left | `Center | `Right ] option
type row = [
  1. | `Header of Inline.t list
  2. | `Sep of sep list
  3. | `Data of Inline.t list
]
type t = {
  1. col_count : int;
  2. rows : row list;
}
val col_count : [< `Data of 'a list | `Header of 'a list | `Sep of 'b list ] list -> Odoc_utils.Int.t
val make : row list -> t
val rows : t -> row list
val parse_sep_row : (Inline.t * (string * string)) list -> ([> `Center | `Left | `Right ] option * int) list option