Module Lang.PageSource

type child =
  1. | Page_child of string
  2. | Module_child of string
  3. | Source_tree_child of string
  4. | Asset_child of string
type t = {
  1. name : Paths.Identifier.Page.t;
  2. root : Root.t;
  3. content : Comment.docs;
  4. children : child list;
  5. digest : Digest.t;
  6. linked : bool;
}