package odoc

  1. Overview
  2. Docs
OCaml documentation generator

Install

Dune Dependency

Authors

Maintainers

Sources

odoc-2.1.1.tbz
sha256=f574dbd28cd0fc3a2b95525c4bb95ddf6d1f6408bb4fe12157fa537884f987fd
sha512=1c545c281a7022a167f028fff8cec6fb3f2f82da0881431be74e7a4281c5353ed83bfbdb4d9d9e08af6755dbe3505c052c5e5b58cdeb08c57aed5e89c0f15e91

doc/odoc.latex/Odoc_latex/Types/index.html

Module Odoc_latex.Types

type break_hierarchy =
  1. | Aesthetic
  2. | Simple
  3. | Line
  4. | Paragraph
  5. | Separation
type row_size =
  1. | Empty
  2. | Small
    (*

    text only

    *)
  3. | Large
    (*

    No table

    *)
  4. | Huge
    (*

    tables *

    *)
type elt =
  1. | Txt of string list
  2. | Section of section
  3. | Verbatim of string
  4. | Internal_ref of reference
  5. | External_ref of string * t option
  6. | Label of string
  7. | Raw of string
  8. | Tag of string * t
  9. | Style of [ `Emphasis | `Bold | `Superscript | `Subscript | `Italic ] * t
  10. | Code_block of t
  11. | Inlined_code of t
  12. | Code_fragment of t
  13. | Break of break_hierarchy
  14. | List of list_info
  15. | Description of (t * t) list
  16. | Indented of t
  17. | Table of table
  18. | Ligaturable of string
and section = {
  1. level : int;
  2. label : string option;
  3. content : t;
}
and list_info = {
  1. typ : Odoc_document.Types.Block.list_type;
  2. items : t list;
}
and table = {
  1. row_size : row_size;
  2. tbl : t list list;
}
and t = elt list
and reference = {
  1. short : bool;
  2. target : string;
  3. text : t option;
}
OCaml

Innovation. Community. Security.