package odoc

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.Block

type t = one list
and one = {
  1. attr : Class.t;
  2. desc : desc;
}
and desc =
  1. | Inline of Inline.t
  2. | Paragraph of Inline.t
  3. | List of list_type * t list
  4. | Description of Description.t
  5. | Source of Source.t
  6. | Verbatim of string
  7. | Raw_markup of Raw_markup.t
and list_type =
  1. | Ordered
  2. | Unordered