Module Types.DocumentedSrcSource

type 'a documented = {
  1. attrs : Class.t;
  2. anchor : Url.Anchor.t option;
  3. code : 'a;
  4. doc : Block.t;
  5. markers : string * string;
}
type t = one list
and one =
  1. | Code of Source.t
  2. | Documented of Inline.t documented
  3. | Nested of t documented
  4. | Subpage of Subpage.t
  5. | Alternative of Alternative.t