odoc.markdown
Block.Table
odoc
odoc.document
odoc.examples
odoc.html
odoc.html_support_files
odoc.index
odoc.json_index
odoc.latex
odoc.loader
odoc.manpage
odoc.model
odoc.model_desc
odoc.ocamlary
odoc.occurrences
odoc.odoc
odoc.odoc_utils
odoc.search
odoc.search_html_frontend
odoc.syntax_highlighter
odoc.xref2
odoc.xref_test
type sep = [ `Left | `Center | `Right ] option
type row = [
| `Header of Inline.t list
| `Sep of sep list
| `Data of Inline.t list
]
type t = {
col_count : int;
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