this repo has no description
1(** Markdown-specific interpretation of {!Odoc_document.Url} *)
2
3type resolve = Current of Odoc_document.Url.Path.t | Base of string
4
5val href : config:Config.t -> resolve:resolve -> Odoc_document.Url.t -> string
6
7module Path : sig
8 val is_leaf_page : Odoc_document.Url.Path.t -> bool
9
10 val for_printing : Odoc_document.Url.Path.t -> string list
11
12 val as_filename : config:Config.t -> Odoc_document.Url.Path.t -> Fpath.t
13end