Module Types.ItemSource

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