Module Types.Item

type 'a item = {
attr : Class.t;
anchor : Url.Anchor.t option;
content : 'a;
doc : Block.t;
}
type declaration = DocumentedSrc.t item
type text = Block.t
type t =
| Text of text
| Heading of Heading.t
| Declaration of DocumentedSrc.t item
| Include of Include.t item