Root.Odoc_file
odoc
type compilation_unit = {
name : string;
hidden : bool;
}
type page = {
title : Comment.link_content option;
frontmatter : Frontmatter.t;
type t =
| Page of page
| Compilation_unit of compilation_unit
| Impl of string
| Asset of string
val create_unit : force_hidden:bool -> string -> t
val create_page : string -> Comment.link_content option -> Frontmatter.t -> t
val create_impl : string -> t
val asset : string -> t
val name : t -> string
val hidden : t -> bool