1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
open Odoc_utils
module Url = Odoc_document.Url
module Html = Tyxml.Html
let html_of_toc toc =
let open Types in
let rec section (section : toc) =
let link = Html.a ~a:[ Html.a_href section.href ] section.title in
match section.children with [] -> [ link ] | cs -> [ link; sections cs ]
and sections the_sections =
the_sections
|> List.map (fun the_section -> Html.li (section the_section))
|> Html.ul
in
match toc with [] -> [] | _ -> [ sections toc ]
let html_of_search () =
let search_bar =
Html.(
input
~a:[ a_class [ "search-bar" ]; a_placeholder "🔎 Type '/' to search..." ]
())
in
let snake = Html.(div ~a:[ a_class [ "search-snake" ] ] []) in
let search_result = Html.div ~a:[ Html.a_class [ "search-result" ] ] [] in
Html.(
div ~a:[ a_class [ "search-inner" ] ] [ search_bar; snake; search_result ])
let ~global_toc ~local_toc =
let local_toc =
match local_toc with
| [] -> []
| _ :: _ ->
[
Html.nav
~a:[ Html.a_class [ "odoc-toc"; "odoc-local-toc" ] ]
(html_of_toc local_toc);
]
in
let global_toc =
match global_toc with
| None -> []
| Some c ->
[ Html.nav ~a:[ Html.a_class [ "odoc-toc"; "odoc-global-toc" ] ] c ]
in
match local_toc @ global_toc with
| [] -> []
| tocs -> [ Html.div ~a:[ Html.a_class [ "odoc-tocs" ] ] tocs ]
let html_of_breadcrumbs (breadcrumbs : Types.breadcrumbs) =
let make_navigation ~up_url rest =
let up =
match up_url with
| None -> []
| Some up_url ->
[ Html.a ~a:[ Html.a_href up_url ] [ Html.txt "Up" ]; Html.txt " – " ]
in
[ Html.nav ~a:[ Html.a_class [ "odoc-nav" ] ] (up @ rest) ]
in
let space = Html.txt " " in
let sep = [ space; Html.entity "#x00BB"; space ] in
let html =
List.concat_map_sep ~sep
~f:(fun (breadcrumb : Types.breadcrumb) ->
match breadcrumb.href with
| Some href ->
[
[
Html.a
~a:[ Html.a_href href ]
(breadcrumb.name
:> Html_types.flow5_without_interactive Html.elt list);
];
]
| None ->
[ (breadcrumb.name :> Html_types.nav_content_fun Html.elt list) ])
breadcrumbs.parents
|> List.flatten
in
let current_name :> Html_types.nav_content_fun Html.elt list =
breadcrumbs.current.name
in
let rest =
if List.is_empty breadcrumbs.parents then current_name
else html @ sep @ current_name
in
make_navigation ~up_url:breadcrumbs.up_url
(rest :> [< Html_types.nav_content_fun > `A `PCDATA `Wbr ] Html.elt list)
let file_uri ~config ~url (base : Types.uri) file =
match base with
| Types.Absolute uri -> uri ^ "/" ^ file
| Relative uri ->
let page = Url.Path.{ kind = `File; parent = uri; name = file } in
Link.href ~config ~resolve:(Current url) (Url.from_path page)
let default_meta_elements ~config ~url =
let theme_uri = Config.theme_uri config in
let odoc_css_uri = file_uri ~config ~url theme_uri "odoc.css" in
[
Html.meta ~a:[ Html.a_charset "utf-8" ] ();
Html.link ~rel:[ `Stylesheet ] ~href:odoc_css_uri ();
Html.meta
~a:[ Html.a_name "generator"; Html.a_content "odoc 2.1.0-1901-gbcc5d4f" ]
();
Html.meta
~a:
[
Html.a_name "viewport";
Html.a_content "width=device-width,initial-scale=1.0";
]
();
]
let page_creator ~config ~url ~uses_katex ~global_toc breadcrumbs
local_toc content =
let theme_uri = Config.theme_uri config in
let support_uri = Config.support_uri config in
let search_uris = Config.search_uris config in
let path = Link.Path.for_printing url in
let head : Html_types.head Html.elt =
let title_string =
Printf.sprintf "%s (%s)" url.name (String.concat ~sep:"." path)
in
let file_uri = file_uri ~config ~url in
let search_uri uri =
match uri with
| Types.Absolute uri -> uri
| Relative uri ->
Link.href ~config ~resolve:(Current url) (Url.from_path uri)
in
let search_scripts =
match search_uris with
| [] -> []
| _ ->
let search_urls = List.map search_uri search_uris in
let search_urls =
let search_url name = Printf.sprintf "'%s'" name in
let search_urls = List.map search_url search_urls in
"[" ^ String.concat ~sep:"," search_urls ^ "]"
in
[
Html.script ~a:[]
(Html.txt
(Format.asprintf
{|let base_url = '%s';
let search_urls = %s;
|}
(let page =
Url.Path.{ kind = `File; parent = None; name = "" }
in
Link.href ~config ~resolve:(Current url)
(Url.from_path page))
search_urls));
Html.script
~a:
[
Html.a_src (file_uri support_uri "odoc_search.js");
Html.a_defer ();
]
(Html.txt "");
]
in
let meta_elements =
let highlightjs_meta =
let highlight_js_uri = file_uri support_uri "highlight.pack.js" in
[
Html.script ~a:[ Html.a_src highlight_js_uri ] (Html.txt "");
Html.script (Html.txt "hljs.initHighlightingOnLoad();");
]
in
let katex_meta =
if uses_katex then
let katex_css_uri = file_uri theme_uri "katex.min.css" in
let katex_js_uri = file_uri support_uri "katex.min.js" in
[
Html.link ~rel:[ `Stylesheet ] ~href:katex_css_uri ();
Html.script ~a:[ Html.a_src katex_js_uri ] (Html.txt "");
Html.script
(Html.cdata_script
{|
document.addEventListener("DOMContentLoaded", function () {
var elements = Array.from(document.getElementsByClassName("odoc-katex-math"));
for (var i = 0; i < elements.length; i++) {
var el = elements[i];
var content = el.textContent;
var new_el = document.createElement("span");
new_el.setAttribute("class", "odoc-katex-math-rendered");
var display = el.classList.contains("display");
katex.render(content, new_el, { throwOnError: false, displayMode: display });
el.replaceWith(new_el);
}
});
|});
]
else []
in
default_meta_elements ~config ~url @ highlightjs_meta @ katex_meta
in
let meta_elements = meta_elements @ search_scripts in
Html.head (Html.title (Html.txt title_string)) meta_elements
in
let search_bar =
match search_uris with
| [] -> []
| _ ->
[ Html.div ~a:[ Html.a_class [ "odoc-search" ] ] [ html_of_search () ] ]
in
let body =
html_of_breadcrumbs breadcrumbs
@ search_bar
@ [ Html.header ~a:[ Html.a_class [ "odoc-preamble" ] ] header ]
@ sidebars ~global_toc ~local_toc
@ [ Html.div ~a:[ Html.a_class [ "odoc-content" ] ] content ]
in
let htmlpp = Html.pp ~indent:(Config.indent config) () in
let html = Html.html head (Html.body ~a:[ Html.a_class [ "odoc" ] ] body) in
let content ppf =
htmlpp ppf html;
Format.pp_force_newline ppf ()
in
content
let make ~config ~url ~ ~breadcrumbs ~ ~toc ~uses_katex content
children =
let filename = Link.Path.as_filename ~config url in
let content =
page_creator ~config ~url ~uses_katex ~global_toc:sidebar header breadcrumbs
toc content
in
{ Odoc_document.Renderer.filename; content; children; path = url }
let path_of_module_of_source ppf url =
match url.Url.Path.parent with
| Some parent ->
let path = Link.Path.for_printing parent in
Format.fprintf ppf " (%s)" (String.concat ~sep:"." path)
| None -> ()
let src_page_creator ~breadcrumbs ~config ~url ~ ~ name content =
let head : Html_types.head Html.elt =
let title_string =
Format.asprintf "Source: %s%a" name path_of_module_of_source url
in
let meta_elements = default_meta_elements ~config ~url in
Html.head (Html.title (Html.txt title_string)) meta_elements
in
let body =
html_of_breadcrumbs breadcrumbs
@ [ Html.header ~a:[ Html.a_class [ "odoc-preamble" ] ] header ]
@ sidebars ~global_toc:sidebar ~local_toc:[]
@ content
in
let htmlpp = Html.pp ~indent:false () in
let html =
Html.html head (Html.body ~a:[ Html.a_class [ "odoc-src" ] ] body)
in
let content ppf =
htmlpp ppf html;
Format.pp_force_newline ppf ()
in
content
let make_src ~config ~url ~breadcrumbs ~ ~ title content =
let filename = Link.Path.as_filename ~config url in
let content =
src_page_creator ~breadcrumbs ~config ~url ~header ~sidebar title content
in
{ Odoc_document.Renderer.filename; content; children = []; path = url }