Source file cmarkit_commonmark.ml
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
open Cmarkit
module C = Cmarkit_renderer.Context
type indent =
[ `I of int | `L of int * string * int * Uchar.t option | `Q of int
| `Fn of int * Label.t ]
type state =
{ nl : string;
mutable sot : bool;
mutable indents : indent list; }
let state : state C.State.t = C.State.make ()
let get_state c = C.State.get c state
let init_context c d =
C.State.set c state (Some { nl = Cmarkit.Doc.nl d; sot = true; indents = [] })
module Char_set = Set.Make (Char)
let esc_angles = Char_set.of_list ['<'; '>']
let esc_parens = Char_set.of_list ['(';')' ]
let esc_quote = Char_set.singleton '\''
let esc_dquote = Char_set.singleton '\"'
let esc_link_label = Char_set.of_list ['['; ']'; '\\']
let buffer_add_dec_esc b c =
Buffer.add_string b "&#";
Buffer.add_string b (Int.to_string (Char.code c));
Buffer.add_char b ';'
let buffer_add_bslash_esc b c =
Buffer.add_char b '\\'; Buffer.add_char b c
let buffer_add_escaped_string ?(esc_ctrl = true) b cs s =
let flush b max start i =
if start <= max then Buffer.add_substring b s start (i - start)
in
let rec loop b s max start i =
if i > max then flush b max start i else
let next = i + 1 in
let c = String.get s i in
if Char_set.mem c cs then
(flush b max start i; buffer_add_bslash_esc b c; loop b s max next next)
else if esc_ctrl && Cmarkit_base.Ascii.is_control c then
(flush b max start i; buffer_add_dec_esc b c; loop b s max next next)
else loop b s max start next
in
loop b s (String.length s - 1) 0 0
let escaped_string ?esc_ctrl c cs s =
buffer_add_escaped_string ?esc_ctrl (C.buffer c) cs s
let buffer_add_escaped_text b s =
let esc_first b s = match s.[0] with
| '-' | '+' | '_' | '=' as c ->
Buffer.add_char b '\\'; Buffer.add_char b c; true
| _ -> false
in
let esc_amp s max next =
next <= max && (Cmarkit_base.Ascii.is_letter s.[next] || s.[next] = '#')
in
let esc_tilde s max prev next =
not (Char.equal prev '~') && next <= max && s.[next] = '~'
in
let esc_item_marker s i =
if i = 0 || i > 9 then false else
let k = ref (i - 1) in
while !k >= 0 && Cmarkit_base.Ascii.is_digit s.[!k] do decr k done;
!k < 0
in
let flush b max start i =
if start <= max then Buffer.add_substring b s start (i - start)
in
let rec loop b s max start prev i =
if i > max then flush b max start i else
let next = i + 1 in
let c = String.get s i in
if Cmarkit_base.Ascii.is_control c then
(flush b max start i; buffer_add_dec_esc b c; loop b s max next c next)
else match c with
| '#' | '`' when not (Char.equal prev c) ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| '~' when esc_tilde s max prev next ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| '&' when esc_amp s max next ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| '!' when i = max ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| '.' | ')' when esc_item_marker s i ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| '\\' | '<' | '>' | '[' | ']' | '*' | '_' | '$' | '|' ->
flush b max start i; buffer_add_bslash_esc b c; loop b s max next c next
| _ ->
loop b s max start c next
in
let max = String.length s - 1 in
if max < 0 then () else
if esc_first b s then loop b s max 1 s.[0] 1 else loop b s max 0 '\x00' 0
let escaped_text c s = buffer_add_escaped_text (C.buffer c) s
let string_node_option c = function None -> () | Some (s, _) -> C.string c s
let nchars c n char = for i = 1 to n do C.byte c char done
let newline c =
let st = get_state c in if st.sot then st.sot <- false else C.string c st.nl
let push_indent c n = let st = get_state c in st.indents <- n :: st.indents
let pop_indent c =
let st = get_state c in
match st.indents with [] -> () | ns -> st.indents <- (List.tl ns)
let rec indent c =
let rec loop c acc = function
| [] -> acc
| `I n as i :: is ->
nchars c n ' '; loop c (i :: acc) is
| `Q n as i :: is ->
nchars c n ' '; C.byte c '>'; C.byte c ' '; loop c (i :: acc) is
| `L (before, m, after, task) :: is ->
nchars c before ' '; C.string c m; nchars c after ' ';
let after = match task with
| None -> after
| Some u -> C.byte c '['; C.utf_8_uchar c u; C.string c "] "; after + 4
in
loop c (`I (before + String.length m + after) :: acc) is
| `Fn (before, label) :: is ->
nchars c before ' ';
C.byte c '['; link_label_lines c (Label.text label);
C.string c "]:";
loop c (`I (before + 1) :: acc) is
in
let st = get_state c in
st.indents <- loop c [] (List.rev st.indents)
and link_label_lines c lines =
escaped_tight_block_lines c esc_link_label lines
and escaped_tight_block_lines c cs = function
| [] -> () | l :: ls ->
let tight c (blanks, (l, _)) = C.string c blanks; escaped_string c cs l in
let line c l = newline c; indent c; tight c l in
tight c l; List.iter (line c) ls
let block_lines c = function
| [] -> () | (l, _) :: ls ->
let line c (l, _) = newline c; indent c; C.string c l in
C.string c l; List.iter (line c) ls
let tight_block_lines c = function
| [] -> () | l :: ls ->
let tight c (blanks, (l, _)) = C.string c blanks; C.string c l in
let line c l = newline c; indent c; tight c l in
tight c l; List.iter (line c) ls
let autolink c a =
C.byte c '<'; C.string c (fst (Inline.Autolink.link a)); C.byte c '>'
let break c b =
let layout_before = fst (Inline.Break.layout_before b) in
let layout_after = fst (Inline.Break.layout_after b) in
let before, after = match Inline.Break.type' b with
| `Soft -> layout_before, layout_after
| `Hard -> (if layout_before = "" then " " else layout_before), layout_after
in
C.string c before; newline c; indent c; C.string c after
let code_span c cs =
nchars c (Inline.Code_span.backtick_count cs) '`';
tight_block_lines c (Inline.Code_span.code_layout cs);
nchars c (Inline.Code_span.backtick_count cs) '`'
let emphasis c e =
let delim = Inline.Emphasis.delim e and i = Inline.Emphasis.inline e in
let delim = if not (delim = '*' || delim = '_') then '*' else delim in
C.byte c delim; C.inline c i; C.byte c delim
let strong_emphasis c e =
let delim = Inline.Emphasis.delim e and i = Inline.Emphasis.inline e in
let delim = if not (delim = '*' || delim = '_') then '*' else delim in
C.byte c delim; C.byte c delim; C.inline c i; C.byte c delim; C.byte c delim
let link_title c open_delim title = match title with
| None -> ()
| Some lines ->
let open', close, escapes = match open_delim with
| '\"' as delim -> delim, delim, esc_dquote
| '\'' as delim -> delim, delim, esc_quote
| '(' -> '(', ')', esc_parens
| _ -> '\"', '\"', esc_dquote
in
C.byte c open'; escaped_tight_block_lines c escapes lines; C.byte c close
let link_definition c ld =
let layout = Link_definition.layout ld in
block_lines c layout.before_dest;
begin match Link_definition.dest ld with
| None -> ()
| Some (dest, _) ->
if layout.angled_dest
then (C.byte c '<'; escaped_string c esc_angles dest; C.byte c '>')
else (escaped_string c esc_parens dest)
end;
if layout.after_dest = [] &&
Option.is_some (Link_definition.dest ld) &&
Option.is_some (Link_definition.title ld)
then C.byte c ' ' ;
block_lines c layout.after_dest;
link_title c layout.title_open_delim (Link_definition.title ld);
block_lines c layout.after_title
let link c l = match Inline.Link.reference l with
| `Inline (ld, _) ->
C.byte c '['; C.inline c (Inline.Link.text l); C.byte c ']';
C.byte c '('; link_definition c ld; C.byte c ')'
| `Ref (`Shortcut, label, _) ->
C.byte c '['; link_label_lines c (Label.text label); C.byte c ']';
| `Ref (`Collapsed, label, _) ->
C.byte c '['; link_label_lines c (Label.text label); C.byte c ']';
C.string c "[]"
| `Ref (`Full, label, _) ->
C.byte c '['; C.inline c (Inline.Link.text l); C.byte c ']';
C.byte c '['; link_label_lines c (Label.text label); C.byte c ']'
let inlines c is = List.iter (C.inline c) is
let image c l = C.byte c '!'; link c l
let raw_html c h = tight_block_lines c h
let text c t = escaped_text c t
let strikethrough c s =
let i = Inline.Strikethrough.inline s in
C.string c "~~"; C.inline c i; C.string c "~~"
let math_span c ms =
let sep = if Inline.Math_span.display ms then "$$" else "$" in
C.string c sep;
tight_block_lines c (Inline.Math_span.tex_layout ms);
C.string c sep
let inline c = function
| Inline.Autolink (a, _) -> autolink c a; true
| Inline.Break (b, _) -> break c b; true
| Inline.Code_span (cs, _) -> code_span c cs; true
| Inline.Emphasis (e, _) -> emphasis c e; true
| Inline.Image (i, _) -> image c i; true
| Inline.Inlines (is, _) -> inlines c is; true
| Inline.Link (l, _) -> link c l; true
| Inline.Raw_html (html, _) -> raw_html c html; true
| Inline.Strong_emphasis (e, _) -> strong_emphasis c e; true
| Inline.Text (t, _) -> text c t; true
| Inline.Ext_strikethrough (s, _) -> strikethrough c s; true
| Inline.Ext_math_span (m, _) -> math_span c m; true
| _ -> C.string c "<!-- Unknown Cmarkit inline -->"; true
let blank_line c l = newline c; indent c; C.string c l
let block_quote c bq =
push_indent c (`Q (Block.Block_quote.indent bq));
C.block c (Block.Block_quote.block bq); pop_indent c
let code_block c cb = match Block.Code_block.layout cb with
| `Indented ->
newline c; push_indent c (`I 4); indent c;
block_lines c (Block.Code_block.code cb);
pop_indent c
| `Fenced f ->
let opening, closing = match fst f.opening_fence with
| "" ->
let char, len = Block.Code_block.make_fence cb in
let f = String.make len char in
f, Some f
| opening -> opening, Option.map fst f.closing_fence
in
let info_string = Block.Code_block.info_string cb in
let code = Block.Code_block.code cb in
newline c; push_indent c (`I f.indent); indent c;
C.string c opening; string_node_option c info_string;
if code <> [] then (newline c; indent c; block_lines c code);
(match closing with
| None -> () | Some close -> newline c; indent c; C.string c close);
pop_indent c
let heading c h =
newline c; indent c;
match (Block.Heading.layout h) with
| `Atx { indent; after_opening; closing } ->
let inline = Block.Heading.inline h in
nchars c indent ' ';
nchars c (Block.Heading.level h) '#';
(if after_opening = "" && not (Cmarkit.Inline.is_empty inline)
then C.byte c ' ' else C.string c after_opening);
C.inline c inline;
C.string c closing
| `Setext l ->
let u = match Block.Heading.level h with 1 -> '=' | 2 -> '-' | _ -> '-' in
nchars c l.leading_indent ' ';
C.inline c (Block.Heading.inline h);
C.string c l.trailing_blanks;
newline c; indent c;
nchars c l.underline_indent ' ';
nchars c (fst l.underline_count) u;
C.string c l.underline_blanks
let html_block c h = newline c; indent c; block_lines c h
let link_reference_definition c ld =
newline c; indent c; nchars c (Link_definition.layout ld).indent ' ';
C.byte c '[';
begin match Link_definition.label ld with
| None -> ()
| Some label -> escaped_tight_block_lines c esc_link_label (Label.text label)
end;
C.string c "]:";
link_definition c ld
let unordered_item c marker (i, _) =
let before = Block.List_item.before_marker i in
let after = Block.List_item.after_marker i in
let task = Option.map fst (Block.List_item.ext_task_marker i) in
push_indent c (`L (before, marker, after, task));
C.block c (Block.List_item.block i);
pop_indent c
let ordered_item c sep num (i, _) =
let before = Block.List_item.before_marker i in
let marker = fst (Block.List_item.marker i) in
let marker = if marker = "" then Int.to_string num ^ sep else marker in
let after = Block.List_item.after_marker i in
let task = Option.map fst (Block.List_item.ext_task_marker i) in
push_indent c (`L (before, marker, after, task));
C.block c (Block.List_item.block i);
pop_indent c;
num + 1
let list c l = match Block.List'.type' l with
| `Unordered marker ->
let marker = match marker with '*' | '-' | '+' -> marker | _ -> '*' in
let marker = String.make 1 marker in
List.iter (unordered_item c marker) (Block.List'.items l)
| `Ordered (start, sep) ->
let sep = if sep <> '.' && sep <> ')' then '.' else sep in
let sep = String.make 1 sep in
ignore (List.fold_left (ordered_item c sep) start (Block.List'.items l))
let paragraph c p =
newline c; indent c;
nchars c (Block.Paragraph.leading_indent p) ' ';
C.inline c (Block.Paragraph.inline p);
C.string c (Block.Paragraph.trailing_blanks p)
let thematic_break c t =
let ind = Block.Thematic_break.indent t in
let break = Block.Thematic_break.layout t in
let break = if break = "" then "---" else break in
newline c; indent c; nchars c ind ' '; C.string c break
let table c t =
let col c (i, (before, after)) =
C.byte c '|'; C.string c before; C.inline c i; C.string c after
in
let sep c ((align, len), _) =
C.byte c '|';
match align with
| None -> nchars c len '-'
| Some `Left -> C.byte c ':'; nchars c len '-'
| Some `Center -> C.byte c ':'; nchars c len '-'; C.byte c ':'
| Some `Right -> nchars c len '-'; C.byte c ':'
in
let row c = function
| (`Header cols, _), blanks | (`Data cols, _), blanks ->
newline c; indent c;
(if cols = [] then C.byte c '|' else List.iter (col c) cols);
C.byte c '|'; C.string c blanks
| (`Sep seps, _), blanks ->
newline c; indent c;
(if seps = [] then C.byte c '|' else List.iter (sep c) seps);
C.byte c '|'; C.string c blanks
in
push_indent c (`I (Block.Table.indent t));
List.iter (row c) (Block.Table.rows t);
pop_indent c
let c fn =
push_indent c (`Fn (Block.Footnote.indent fn, Block.Footnote.label fn));
C.block c (Block.Footnote.block fn);
pop_indent c
let block c = function
| Block.Blank_line (l, _) -> blank_line c l; true
| Block.Block_quote (b, _) -> block_quote c b; true
| Block.Blocks (bs, _) -> List.iter (C.block c) bs; true
| Block.Code_block (cb, _) -> code_block c cb; true
| Block.Heading (h, _) -> heading c h; true
| Block.Html_block (h, _) -> html_block c h; true
| Block.Link_reference_definition (ld, _) ->
link_reference_definition c ld; true
| Block.List (l, _) -> list c l; true
| Block.Paragraph (p, _) -> paragraph c p; true
| Block.Thematic_break (t, _) -> thematic_break c t; true
| Block.Ext_math_block (cb, _) -> code_block c cb; true
| Block.Ext_table (t, _) -> table c t; true
| Block.Ext_footnote_definition (t, _) -> footnote c t; true
| _ -> newline c; indent c; C.string c "<!-- Unknown Cmarkit block -->"; true
let doc c d = C.block c (Doc.block d); true
let renderer () = Cmarkit_renderer.make ~init_context ~inline ~block ~doc ()
let of_doc d = Cmarkit_renderer.doc_to_string (renderer ()) d