this repo has no description
at main 43 lines 1.1 kB view raw
1type break_hierarchy = Aesthetic | Simple | Line | Paragraph | Separation 2 3type row_size = 4 | Empty 5 | Small (** text only *) 6 | Large (** No table *) 7 | Huge (** tables **) 8 9type elt = 10 | Txt of string list 11 | Section of section 12 | Verbatim of string 13 | Internal_ref of reference 14 | External_ref of string * t option 15 | Label of string 16 | Raw of string 17 | Tag of string * t 18 | Style of [ `Emphasis | `Bold | `Superscript | `Subscript | `Italic ] * t 19 | Code_block of t 20 | Inlined_code of t 21 | Code_fragment of t 22 | Break of break_hierarchy 23 | List of list_info 24 | Description of (t * t) list 25 | Indented of t 26 | Layout_table of layout_table 27 | Table of table 28 | Ligaturable of string 29 | Image of Fpath.t 30 31and section = { level : int; label : string option; content : t } 32 33and list_info = { typ : Odoc_document.Types.Block.list_type; items : t list } 34 35and layout_table = { row_size : row_size; tbl : t list list } 36 37and alignment = Odoc_document.Types.Table.alignment 38 39and table = { align : alignment list; data : t list list } 40 41and t = elt list 42 43and reference = { short : bool; target : string; text : t option }