forked from xavierleroy/coq2html
-
Notifications
You must be signed in to change notification settings - Fork 3
/
generate_index.mli
23 lines (18 loc) · 1.1 KB
/
generate_index.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* *********************************************************************)
(* *)
(* Addition to the the Coq2HTML documentation generator *)
(* *)
(* Copyright National Institute of Advanced Industrial Science and *)
(* Technology. All rights reserved. This file is distributed *)
(* under the terms of the GNU General Public License as published by *)
(* the Free Software Foundation, either version 2 of the License, or *)
(* (at your option) any later version. *)
(* *)
(* *********************************************************************)
type range = Range.t
val escaped : string -> string
val sanitize_linkname : string -> string
type file_path
val all_files : (string, unit) Hashtbl.t -> file_path list
val sidebar_files : file_path list -> string
val generate : string -> XrefTable.t -> (string, unit) Hashtbl.t -> string -> string -> unit