package cow

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