package cow

  1. Overview
  2. Docs

Module Create.TagsSource

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