Types.Block
type lang_tag = string
type t = one list
and one = {
attr : Class.t;
desc : desc;
}
and desc =
| Inline of Inline.t
| Paragraph of Inline.t
| List of list_type * t list
| Description of Description.t
| Source of lang_tag * Source.t
| Math of Math.t
| Verbatim of string
| Raw_markup of Raw_markup.t
| Table of t Table.t
and list_type =
| Ordered
| Unordered