jon.recoil.org

Module Renderer.BlockSource

Sourcetype code_block = {
  1. info_string : string option;
  2. code : string list;
}
Sourcetype list_type =
  1. | Unordered
  2. | Ordered
Sourcetype id = [
  1. | `Auto of string
  2. | `Id of string
]
Sourcetype heading = {
  1. level : int;
  2. inline : Odoc_markdown.Renderer.Inline.t;
  3. id : Odoc_markdown.Renderer.Block.id option;
}
Sourcemodule Table : sig ... end
Sourcetype t =
  1. | Blank_line
  2. | Blocks of Odoc_markdown.Renderer.Block.t list
  3. | Code_block of Odoc_markdown.Renderer.Block.code_block
  4. | Heading of Odoc_markdown.Renderer.Block.heading
  5. | Html_block of string list
  6. | Unordered_list of Odoc_markdown.Renderer.Block.t list
  7. | Ordered_list of Odoc_markdown.Renderer.Block.t list
  8. | Paragraph of Odoc_markdown.Renderer.Inline.t
  9. | Table of Odoc_markdown.Renderer.Block.Table.t