Odoc_odoc.Odoc_file
SourceLoad and save .odoc
and .odocl
files.
type content =
| Page_content of Odoc_model.Lang.Page.t
| Impl_content of Odoc_model.Lang.Implementation.t
| Unit_content of Odoc_model.Lang.Compilation_unit.t
| Asset_content of Odoc_model.Lang.Asset.t
Either a page or a module or something else.
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.
val save_impl :
Fs.File.t ->
warnings:Odoc_model.Error.t list ->
Odoc_model.Lang.Implementation.t ->
unit
Save an implementation. The src-
prefix is added to the file name if missing.
Load an .odoc
file.
Only load the root. Faster than load
, used for looking up imports.
Load a .odoc-index
file.
Load a .odoc-index
file.
val save_asset :
Fpath.t ->
warnings:Odoc_model.Error.t list ->
Odoc_model.Lang.Asset.t ->
unit