Module Types.BlockSource

type lang_tag = string
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 lang_tag * Source.t
  6. | Math of Math.t
  7. | Verbatim of string
  8. | Raw_markup of Raw_markup.t
  9. | Table of t Table.t
and list_type =
  1. | Ordered
  2. | Unordered