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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
open Odoc_document.Types
module Html = Tyxml.Html
module Doctree = Odoc_document.Doctree
type any = Html_types.flow5
type item = Html_types.flow5_without_header_footer
type flow = Html_types.flow5_without_sectioning_heading_header_footer
type phrasing = Html_types.phrasing
type non_link_phrasing = Html_types.phrasing_without_interactive
let mk_anchor_link id =
[ Html.a ~a:[ Html.a_href ("#" ^ id); Html.a_class [ "anchor" ] ] [] ]
let mk_anchor anchor =
match anchor with
| None -> ([], [])
| Some { Odoc_document.Url.Anchor.anchor; _ } ->
let link = mk_anchor_link anchor in
let attrib = [ Html.a_id anchor; Html.a_class [ "anchored" ] ] in
(attrib, link)
let class_ (l : Class.t) = if l = [] then [] else [ Html.a_class l ]
and raw_markup (t : Raw_markup.t) =
let target, content = t in
match Astring.String.Ascii.lowercase target with
| "html" ->
[ Html.Unsafe.data content ]
| _ -> []
and source k ?a (t : Source.t) =
let rec token (x : Source.token) =
match x with
| Elt i -> k i
| Tag (None, l) ->
let content = tokens l in
if content = [] then [] else [ Html.span content ]
| Tag (Some s, l) -> [ Html.span ~a:[ Html.a_class [ s ] ] (tokens l) ]
and tokens t = Utils.list_concat_map t ~f:token in
Utils.optional_elt Html.code ?a (tokens t)
and styled style ~emph_level =
match style with
| `Emphasis ->
let a = if emph_level mod 2 = 0 then [] else [ Html.a_class [ "odd" ] ] in
(emph_level + 1, Html.em ~a)
| `Bold -> (emph_level, Html.b ~a:[])
| `Italic -> (emph_level, Html.i ~a:[])
| `Superscript -> (emph_level, Html.sup ~a:[])
| `Subscript -> (emph_level, Html.sub ~a:[])
let rec internallink ~emph_level ~resolve ?(a = []) (t : InternalLink.t) =
match t with
| Resolved (uri, content) ->
let href = Link.href ~resolve uri in
let a = (a :> Html_types.a_attrib Html.attrib list) in
let elt =
Html.a ~a:(Html.a_href href :: a) (inline_nolink ~emph_level content)
in
let elt = (elt :> phrasing Html.elt) in
[ elt ]
| Unresolved content ->
let a = Html.a_class [ "xref-unresolved" ] :: a in
let elt = Html.span ~a (inline ~emph_level ~resolve content) in
let elt = (elt :> phrasing Html.elt) in
[ elt ]
and internallink_nolink ~emph_level
~(a : Html_types.span_attrib Html.attrib list) (t : InternalLink.t) =
match t with
| Resolved (_, content) | Unresolved content ->
[ Html.span ~a (inline_nolink ~emph_level content) ]
and inline ?(emph_level = 0) ~resolve (l : Inline.t) : phrasing Html.elt list =
let one (t : Inline.one) =
let a = class_ t.attr in
match t.desc with
| Text "" -> []
| Text s ->
if a = [] then [ Html.txt s ] else [ Html.span ~a [ Html.txt s ] ]
| Entity s ->
if a = [] then [ Html.entity s ] else [ Html.span ~a [ Html.entity s ] ]
| Linebreak -> [ Html.br ~a () ]
| Styled (style, c) ->
let emph_level, app_style = styled style ~emph_level in
[ app_style @@ inline ~emph_level ~resolve c ]
| Link (href, c) ->
let a = (a :> Html_types.a_attrib Html.attrib list) in
let content = inline_nolink ~emph_level c in
[ Html.a ~a:(Html.a_href href :: a) content ]
| InternalLink c -> internallink ~emph_level ~resolve ~a c
| Source c -> source (inline ~emph_level ~resolve) ~a c
| Raw_markup r -> raw_markup r
in
Utils.list_concat_map ~f:one l
and inline_nolink ?(emph_level = 0) (l : Inline.t) :
non_link_phrasing Html.elt list =
let one (t : Inline.one) =
let a = class_ t.attr in
match t.desc with
| Text "" -> []
| Text s ->
if a = [] then [ Html.txt s ] else [ Html.span ~a [ Html.txt s ] ]
| Entity s ->
if a = [] then [ Html.entity s ] else [ Html.span ~a [ Html.entity s ] ]
| Linebreak -> [ Html.br ~a () ]
| Styled (style, c) ->
let emph_level, app_style = styled style ~emph_level in
[ app_style @@ inline_nolink ~emph_level c ]
| Link (_, c) -> inline_nolink ~emph_level c
| InternalLink c -> internallink_nolink ~emph_level ~a c
| Source c -> source (inline_nolink ~emph_level) ~a c
| Raw_markup r -> raw_markup r
in
Utils.list_concat_map ~f:one l
let heading ~resolve (h : Heading.t) =
let a, anchor =
match h.label with
| Some id -> ([ Html.a_id id ], mk_anchor_link id)
| None -> ([], [])
in
let content = inline ~resolve h.title in
let mk =
match h.level with
| 0 -> Html.h1
| 1 -> Html.h2
| 2 -> Html.h3
| 3 -> Html.h4
| 4 -> Html.h5
| _ -> Html.h6
in
mk ~a (anchor @ content)
let rec block ~resolve (l : Block.t) : flow Html.elt list =
let as_flow x = (x : phrasing Html.elt list :> flow Html.elt list) in
let one (t : Block.one) =
let a = class_ t.attr in
match t.desc with
| Inline i ->
if a = [] then as_flow @@ inline ~resolve i
else [ Html.span ~a (inline ~resolve i) ]
| Paragraph i -> [ Html.p ~a (inline ~resolve i) ]
| List (typ, l) ->
let mk = match typ with Ordered -> Html.ol | Unordered -> Html.ul in
[ mk ~a (List.map (fun x -> Html.li (block ~resolve x)) l) ]
| Description l ->
[
(let item i =
let a = class_ i.Description.attr in
let term =
(inline ~resolve i.Description.key
: phrasing Html.elt list
:> flow Html.elt list)
in
let def = block ~resolve i.Description.definition in
Html.li ~a (term @ (Html.txt " " :: def))
in
Html.ul ~a (List.map item l));
]
| Raw_markup r -> raw_markup r
| Verbatim s -> [ Html.pre ~a [ Html.txt s ] ]
| Source c -> [ Html.pre ~a (source (inline ~resolve) c) ]
in
Utils.list_concat_map l ~f:one
let flow_to_item : flow Html.elt list -> item Html.elt list =
fun x -> Html.totl @@ Html.toeltl x
let div : ([< Html_types.div_attrib ], [< item ], [> Html_types.div ]) Html.star
=
Html.Unsafe.node "div"
let spec_class = function [] -> [] | attr -> class_ ("spec" :: attr)
let spec_doc_div ~resolve = function
| [] -> []
| docs ->
let a = [ Html.a_class [ "spec-doc" ] ] in
[ div ~a (flow_to_item @@ block ~resolve docs) ]
let rec documentedSrc ~resolve (t : DocumentedSrc.t) : item Html.elt list =
let open DocumentedSrc in
let take_code l =
Doctree.Take.until l ~classify:(function
| Code code -> Accum code
| Alternative (Expansion { summary; _ }) -> Accum summary
| _ -> Stop_and_keep)
in
let take_descr l =
Doctree.Take.until l ~classify:(function
| Documented { attrs; anchor; code; doc; markers } ->
Accum
[ { DocumentedSrc.attrs; anchor; code = `D code; doc; markers } ]
| Nested { attrs; anchor; code; doc; markers } ->
Accum
[ { DocumentedSrc.attrs; anchor; code = `N code; doc; markers } ]
| _ -> Stop_and_keep)
in
let rec to_html t : item Html.elt list =
match t with
| [] -> []
| (Code _ | Alternative _) :: _ ->
let code, _, rest = take_code t in
source (inline ~resolve) code @ to_html rest
| Subpage subp :: _ -> subpage ~resolve subp
| (Documented _ | Nested _) :: _ ->
let l, _, rest = take_descr t in
let one { DocumentedSrc.attrs; anchor; code; doc; markers } =
let content =
match code with
| `D code -> (inline ~resolve code :> item Html.elt list)
| `N n -> to_html n
in
let doc =
match doc with
| [] -> []
| doc ->
let opening, closing = markers in
[
Html.td
~a:(class_ [ "def-doc" ])
(Html.span
~a:(class_ [ "comment-delim" ])
[ Html.txt opening ]
:: block ~resolve doc
@ [
Html.span
~a:(class_ [ "comment-delim" ])
[ Html.txt closing ];
]);
]
in
let a, link = mk_anchor anchor in
let content =
let c = link @ content in
Html.td ~a:(class_ attrs) (c :> any Html.elt list)
in
Html.tr ~a (content :: doc)
in
Html.table (List.map one l) :: to_html rest
in
to_html t
and subpage ~resolve (subp : Subpage.t) : item Html.elt list =
items ~resolve subp.content.items
and items ~resolve l : item Html.elt list =
let rec walk_items acc (t : Item.t list) : item Html.elt list =
let continue_with rest elts =
(walk_items [@tailcall]) (List.rev_append elts acc) rest
in
match t with
| [] -> List.rev acc
| Text _ :: _ as t ->
let text, _, rest =
Doctree.Take.until t ~classify:(function
| Item.Text text -> Accum text
| _ -> Stop_and_keep)
in
let content = flow_to_item @@ block ~resolve text in
(continue_with [@tailcall]) rest content
| Heading h :: rest ->
(continue_with [@tailcall]) rest [ heading ~resolve h ]
| Include { attr; anchor; doc; content = { summary; status; content } }
:: rest ->
let doc = spec_doc_div ~resolve doc in
let included_html = (items content :> any Html.elt list) in
let a_class =
if List.length content = 0 then [ "odoc-include"; "shadowed-include" ]
else [ "odoc-include" ]
in
let content =
let details ~open' =
let open' = if open' then [ Html.a_open () ] else [] in
let summary =
let anchor_attrib, anchor_link = mk_anchor anchor in
let a = spec_class attr @ anchor_attrib in
Html.summary ~a @@ anchor_link @ source (inline ~resolve) summary
in
[ Html.details ~a:open' summary included_html ]
in
match status with
| `Inline -> included_html
| `Closed -> details ~open':false
| `Open -> details ~open':true
| `Default -> details ~open':!Tree.open_details
in
let inc = [ Html.div ~a:[ Html.a_class a_class ] (doc @ content) ] in
(continue_with [@tailcall]) rest inc
| Declaration { Item.attr; anchor; content; doc } :: rest ->
let anchor_attrib, anchor_link = mk_anchor anchor in
let a = spec_class attr @ anchor_attrib in
let content = anchor_link @ documentedSrc ~resolve content in
let spec =
let doc = spec_doc_div ~resolve doc in
[ div ~a:[ Html.a_class [ "odoc-spec" ] ] (div ~a content :: doc) ]
in
(continue_with [@tailcall]) rest spec
and items l = walk_items [] l in
items l
module Toc = struct
open Odoc_document.Doctree
let render_toc ~resolve (toc : Toc.t) =
let rec section { Toc.url; text; children } =
let text = inline_nolink text in
let text =
(text
: non_link_phrasing Html.elt list
:> Html_types.flow5_without_interactive Html.elt list)
in
let href = Link.href ~resolve url in
let link = Html.a ~a:[ Html.a_href href ] text in
match children with [] -> [ link ] | _ -> [ link; sections children ]
and sections the_sections =
the_sections
|> List.map (fun the_section -> Html.li (section the_section))
|> Html.ul
in
match toc with
| [] -> []
| _ -> [ Html.nav ~a:[ Html.a_class [ "odoc-toc" ] ] [ sections toc ] ]
let on_sub : Subpage.status -> bool = function
| `Closed | `Open | `Default -> false
| `Inline -> true
let from_items ~resolve ~path i =
render_toc ~resolve @@ Toc.compute path ~on_sub i
end
module Page = struct
let on_sub = function
| `Page _ -> None
| `Include x -> (
match x.Include.status with
| `Closed | `Open | `Default -> None
| `Inline -> Some 0)
let rec include_ ?theme_uri indent { Subpage.content; _ } =
[ page ?theme_uri indent content ]
and subpages ?theme_uri indent subpages =
Utils.list_concat_map ~f:(include_ ?theme_uri indent) subpages
and page ?theme_uri ?support_uri indent p =
let { Page.title; ; items = i; url } =
Doctree.Labels.disambiguate_page p
and subpages =
subpages ?theme_uri indent @@ Doctree.Subpages.compute p
in
let resolve = Link.Current url in
let i = Doctree.Shift.compute ~on_sub i in
let toc = Toc.from_items ~resolve ~path:url i in
let = items ~resolve header in
let content = (items ~resolve i :> any Html.elt list) in
let page =
Tree.make ?theme_uri ?support_uri ~indent ~header ~toc ~url title content
subpages
in
page
end
let render ?theme_uri ?support_uri ~indent page =
Page.page ?theme_uri ?support_uri indent page
let doc ~xref_base_uri b =
let resolve = Link.Base xref_base_uri in
block ~resolve b