Module Odoc_odoc.Odoc_file

Load and save .odoc and .odocl files.

type content =
| Page_content of Odoc_model.Lang.Page.t
| Unit_content of Odoc_model.Lang.Compilation_unit.t

Either a page or a module.

type t = {
content : content;
warnings : Odoc_model.Error.t list;
}

Serialization

val save_page : Fs.File.t -> warnings:Odoc_model.Error.t list -> Odoc_model.Lang.Page.t -> unit

Save a page. The page- prefix is added to the file name if missing.

val save_unit : Fs.File.t -> warnings:Odoc_model.Error.t list -> Odoc_model.Lang.Compilation_unit.t -> unit

Save a module.

Deserialization

val load : Fs.File.t -> (t[> Or_error.msg ]) Or_error.result

Load an .odoc file.

Only load the root. Faster than load, used for looking up imports.