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 * string list * (string * string) list * Source.t * t
  6. | Math of Math.t
  7. | Verbatim of string
  8. | Raw_markup of Raw_markup.t
  9. | Table of t Table.t
  10. | Image of Target.t * string
  11. | Video of Target.t * string
  12. | Audio of Target.t * string
and list_type =
  1. | Ordered
  2. | Unordered