Module Types.Block

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 Source.t
| Verbatim of string
| Raw_markup of Raw_markup.t
and list_type =
| Ordered
| Unordered