odoc.model
Root.Odoc_file
odoc
odoc.document
odoc.examples
odoc.html
odoc.html_support_files
odoc.index
odoc.json_index
odoc.latex
odoc.loader
odoc.manpage
odoc.model_desc
odoc.ocamlary
odoc.occurrences
odoc.odoc
odoc.odoc_utils
odoc.search
odoc.search_html_frontend
odoc.syntax_highlighter
odoc.xref2
odoc.xref_test
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