package cow

  1. Overview
  2. Docs
type html_list = [
  1. | `Ol of t list
  2. | `Ul of t list
]
type table_flags =
  1. | Headings_fst_col
  2. | Headings_fst_row
  3. | Sideways
  4. | Heading_color of Css.color
  5. | Bg_color of Css.color
type !'a table = [
  1. | `Td of 'a * int * int
  2. | `Th of 'a * int * int
  3. | `Tr of 'a table list
]