this repo has no description
at main 17 lines 365 B view raw
1open Odoc_utils 2open Types 3 4type entry = { 5 url : Url.t; 6 valid_link : bool; 7 content : Inline.t; 8 toc_status : [ `Open | `Hidden ] option; 9} 10 11type t = entry Tree.forest 12 13val of_index : Odoc_index.t -> t 14 15val to_block : t -> Url.Path.t -> Types.Block.t 16(** Generates the sidebar document given a global sidebar and the path at which 17 it will be displayed *)