this repo has no description
1type compiled = Odoc_unit.any
2
3val init_stats : Odoc_unit.any list -> unit
4
5val compile :
6 ?partial:Fpath.t -> partial_dir:Fpath.t -> Odoc_unit.any list -> compiled list
7(** Use [partial] to reuse the output of a previous call to [compile]. Useful in
8 the voodoo context.
9
10 [output_dir] is the directory for [odoc] file, [linked_dir] is the one for
11 [odocl] files (defaulting to [output_dir] when absent). *)
12
13type linked
14
15val link :
16 warnings_tags:string list ->
17 custom_layout:bool ->
18 compiled list ->
19 linked list
20
21val html_generate :
22 occurrence_file:Fpath.t ->
23 remaps:(string * string) list ->
24 generate_json:bool ->
25 simplified_search_output:bool ->
26 Fpath.t ->
27 linked list ->
28 unit