Module Renderer.Block

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