-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown.scm
630 lines (581 loc) · 23 KB
/
markdown.scm
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
#!chezscheme
(library
(melt lib markdown)
(export markdown->sxml
scone
pattern-match
char-forward
position-back
eof)
(import (scheme))
;; define append but contain one single element
(define (scone ls new-ele)
(cond
[(null? new-ele)
ls]
[else
(append ls (list new-ele))]))
;; define the eof object for pattern
(define eof (eof-object))
;; if n larger than position, do nothing
(define (position-back port n)
(let ((position (port-position port)))
(set-port-position! port (if (and (> position 0) (> position n) (> n 0))
(- position n)
position))))
;; forward n chars
(define (char-forward port n)
(do ((count n (- count 1)))
((= count 0))
(read-char port)))
;; #######################################################
;; the pattern is a char list. port is a text port.
;; pattern can include a nested char list.
;; normal pattern is (#\space #\a ...)
;; if the pattern is (#\space #a), it match " a", return the pattern means true.
;; and a nested pattern is (#\space (#\a #\b #\c) #\\)
;; this pattern match " a\" and " b\" and " c\".
;; the nested char match a single char.
;; if the nested list is '(), it will match any char, any!
(define (pattern-match pattern port)
(define ($$check pattern position port)
(if (null? pattern)
(begin (set-port-position! port position) #t)
(let ((pattern-atom (car pattern)))
(cond
[(null? pattern-atom)
(read-char port) ;; accept it, if the atom is '()
($$check (cdr pattern) position port)]
[(and (list? pattern-atom)
(eq? (car pattern-atom) '!))
(if (not (member (read-char port) pattern-atom))
($$check (cdr pattern) position port)
(begin (set-port-position! port position) #f))]
[(list? pattern-atom)
(if (member (read-char port) pattern-atom)
($$check (cdr pattern) position port)
(begin (set-port-position! port position) #f))]
[(char? pattern-atom)
(if (eq? (read-char port) pattern-atom)
($$check (cdr pattern) position port)
(begin (set-port-position! port position) #f))]
[(eof-object? pattern-atom)
(if (eof-object? (read-char port))
($$check (cdr pattern) position port)
(begin (set-port-position! port position) #f))]
[else
(error 'pattern-atoms "unproperly pattern atom")]))))
($$check pattern (port-position port) port))
(define (g-check-list ls)
(lambda (ob)
(equal? ls ob)))
;; use the pattern to determine which context to enter in
;; return the parsed sxml and pass previous context(procedure) to it
;; so it can return to previous context
;; 这里之后可以使用cc来进行错误处理和异常报告排错, 需要和define-FA 联合
(define (context-transform sxml port pattern-ls FAs cur-context)
(call/cc
(lambda (cc)
(do ((patterns pattern-ls (cdr patterns))
(key-context-list (map cons pattern-ls FAs)))
((null? patterns) #f)
(let ((cur-pattern (car patterns)))
(if (pattern-match cur-pattern port)
(cc ((lambda (item) (cur-context (scone sxml item) port cur-context))
((cdr (assp (g-check-list cur-pattern) key-context-list)) (list) port cur-context)))))))))
;; check each terminate pattern and end the context if matched returning value.
;; forward-numbers list is to forward the port position if matched.
;; if not match, return #f.
;; the value must use delay to wrap
(define (context-return value port pattern-ls forward-numbers)
(call/cc
(lambda (cc)
(do ((end-pattern (cons `(,eof) pattern-ls) (cdr end-pattern))
(query-forward-numbers (map cons (cons `(,eof) pattern-ls)
(cons 0 forward-numbers))))
((null? end-pattern) #f)
(let* ((cur-pattern (car end-pattern))
(number (cdr (assp (g-check-list cur-pattern) query-forward-numbers))))
(if (pattern-match cur-pattern port)
(begin (char-forward port number) (cc (force value)))))))))
;; define a FA
;; end-lambda must be (lambda (sxml port) bodys...)
;; TODO 之后可以在else后边加入错误处理
(define-syntax define-FA
(syntax-rules ()
[(_ name pre-lambda end-lambda (end-patterns number-list) (trans-patterns FAs) )
(define name
(lambda (sxml port pre-context)
(if (equal? pre-context name)
(cond
[(context-return (delay (end-lambda sxml port))
port end-patterns number-list)]
[(context-transform sxml port trans-patterns FAs name)]
[else (error 'define-FA "no proper transform context definition")])
(name (scone sxml (pre-lambda sxml port)) port name))))]))
;; (g 'x 3) ==> (x x x)
(define (g ele num)
(cond
[(= num 0)
'()]
[(> num 0)
(cons ele (g ele (- num 1)))]))
;;; above is the common utility
;;; #################################################################
;;; #################################################################
;;; #################################################################
;;; below is the definition
;; define makrdown-> sxml
(define (markdown->sxml port)
(pattern-top-parse (list) port #f))
;;; =========================== A ===== U ====== X ======================
;; return the escaped char
(define (aux-escape sxml port . idle)
(char-forward port 1)
(read-char port))
;; generate procedure which ignore 'number' chars
(define (aux-ignore number)
(lambda (sxml port . idle)
(char-forward port number) '()))
;; read one char
(define (aux-common sxml port . idle)
(let ((char (read-char port)))
(if (eof-object? char)
'()
char)))
;; the top environment(context)
(define-FA pattern-top-parse
(lambda (sxml port) '())
(lambda (sxml port) sxml)
[(list `(,eof)) '(0)]
[(list '(#\\ ())
'((#\newline #\space))
'(#\` #\` #\`)
'(#\#)
'(#\* #\* #\*)
'(#\- #\- #\-)
'(#\- #\space #\[ (#\space) #\] #\space)
'(#\* #\space #\[ (#\space) #\] #\space)
'(#\* #\space #\[ (! #\space) #\] #\space)
'(#\- #\space #\[ (! #\space) #\] #\space)
'(#\* #\space)
'(#\- #\space)
'((#\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) #\. #\space)
'(#\! #\[)
'(#\> #\space)
'(()))
(list aux-escape
(aux-ignore 1)
pattern-parse-block-code
pattern-parse-header
pattern-parse-hr
pattern-parse-hr
aux-parse-task-list-unchecked
aux-parse-task-list-unchecked
aux-parse-task-list-checked
aux-parse-task-list-checked
pattern-parse-ul-list
pattern-parse-ul-list
pattern-parse-ol-list
pattern-parse-img
pattern-parse-block-quote
pattern-parse-paragraph)])
;;; ==================== paragraph ===================
;; return the paragraph
(define-FA pattern-parse-paragraph
(lambda (sxml port) '())
(lambda (sxml port) `(p ,sxml))
[(list '(#\newline #\newline)
'(#\newline #\` #\` #\`)
'(#\newline #\#)
'(#\newline #\* #\space)
'(#\newline #\- #\space)
'(#\newline (#\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) #\. #\space)
'(#\newline #\! #\[)
'(#\newline #\> #\space))
(list 2 1 1 1 1 1 1 1)]
[(list '(#\\ ())
'(#\newline)
'(#\[)
'(#\`)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\$ #\$)
'(#\~ #\~)
'(()))
(list aux-escape
aux-paragraph-space
pattern-parse-link
pattern-parse-inline-code
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-math
pattern-parse-strike-through
aux-common)])
(define (aux-paragraph-space sxml port . idle)
(context-return (delay #\space) port (list '(#\newline)) (list 1)))
;; ===================== block-quote =======================
;; return block quote
(define-FA pattern-parse-block-quote
(aux-ignore 2)
(lambda (sxml port) `(blockquote (p ,sxml)))
((list '(#\newline #\newline)
'(#\newline #\` #\` #\`)
'(#\newline #\#)
'(#\newline #\* #\space)
'(#\newline #\- #\space)
'(#\newline (#\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) #\. #\space)
'(#\newline #\! #\[)
'(#\newline #\> #\space))
(list 2 1 1 1 1 1 1 1))
((list '(#\\)
'(#\newline)
'(#\`)
'(#\[)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\$ #\$)
'(#\~ #\~)
'(()))
(list aux-escape
aux-paragraph-space
pattern-parse-inline-code
pattern-parse-link
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-math
pattern-parse-strike-through
aux-common)))
;; ======================== list =============================
;; for the list context
;; return ul or ol
(define-FA pattern-parse-ul-list
(lambda (sxml port) '())
(lambda (sxml port) (cons 'ul sxml))
[(list '(#\newline (! #\* #\-) (! #\space))
'(#\newline (! #\* #\-) ()))
(list 1 1)]
[(list '(#\newline)
'(#\* #\space)
'(#\- #\space))
(list (aux-ignore 1)
aux-parse-ul-list
aux-parse-ul-list)])
(define-FA aux-parse-ul-list
(lambda (sxml port) '())
(lambda (sxml port) `(li ,sxml))
[(list '(#\newline))
(list 0)]
[(list '(#\* #\space)
'(#\- #\space)
'(#\~ #\~)
'(#\$ #\$)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\`)
'(()))
(list (aux-ignore 2)
(aux-ignore 2)
pattern-parse-strike-through
pattern-parse-math
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-inline-code
aux-common)])
(define-FA pattern-parse-ol-list
(lambda (sxml port) '())
(lambda (sxml port) (cons 'ol sxml))
[(list '(#\newline (! #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) (! #\.) (! #\space))
'(#\newline (! #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) ()))
(list 1 1)]
[(list '(#\newline)
'((#\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) #\. #\space))
(list (aux-ignore 1)
aux-parse-ol-list)])
(define-FA aux-parse-ol-list
(lambda (sxml port) '())
(lambda (sxml port) `(li ,sxml))
[(list '(#\newline))
(list 0)]
[(list '((#\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\0) #\. #\space)
'(#\~ #\~)
'(#\$ #\$)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\`)
'(()))
(list (aux-ignore 3)
pattern-parse-strike-through
pattern-parse-math
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-inline-code
aux-common)])
;; ====================== task list =================
(define-FA pattern-parse-task-list
(lambda (sxml port) '())
(lambda (sxml port) (cons 'ul sxml))
[(list '(#\newline (! #\- #\*)))
(list 1)]
[(list '(#\newline)
'(#\- #\space #\[ (#\space) #\] #\space)
'(#\* #\space #\[ (#\space) #\] #\space)
'(#\* #\space #\[ (! #\space) #\] #\space)
'(#\- #\space #\[ (! #\space) #\] #\space))
(list (aux-ignore 1)
aux-parse-task-list-unchecked
aux-parse-task-list-unchecked
aux-parse-task-list-checked
aux-parse-task-list-checked)])
(define-FA aux-parse-task-list-checked
(lambda (sxml port) '())
(lambda (sxml port) `(li (input (@ (checked "")
(disabled "")
(type "checkbox")))
,sxml))
[(list '(#\newline))
(list 0)]
[(list '(#\\)
'(#\- #\space #\[ (! #\space) #\] #\space)
'(#\* #\space #\[ (! #\space) #\] #\space)
'(#\~ #\~)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\`)
'(()))
(list aux-escape
(aux-ignore 6)
(aux-ignore 6)
pattern-parse-strike-through
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-inline-code
aux-common)])
(define-FA aux-parse-task-list-unchecked
(lambda (sxml port) '())
(lambda (sxml port) `(li (input (@ (disabled "")
(type "checkbox")))
,sxml))
[(list '(#\newline))
(list 0)]
[(list '(#\\)
'(#\- #\space #\[ (#\space) #\] #\space)
'(#\* #\space #\[ (#\space) #\] #\space)
'(#\~ #\~)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\`)
'(()))
(list aux-escape
(aux-ignore 6)
(aux-ignore 6)
pattern-parse-strike-through
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-inline-code
aux-common)])
;;; =============== header ===============
;; return the header
(define-FA pattern-parse-header
(lambda (sxml port) '())
(lambda (sxml port) sxml)
[(list '(#\newline)) (list 1)]
[(list '(#\#))
(list aux-parse-header)])
(define (aux-parse-header sxml port . idle)
(cond
[(pattern-match '(#\newline) port)
sxml]
[(pattern-match '(#\# #\space) port)
(char-forward port 2)
(list 'h1 (aux-parse-header sxml port))]
[(pattern-match '(#\# #\# #\space) port)
(char-forward port 3)
(list 'h2 (aux-parse-header sxml port))]
[(pattern-match '(#\# #\# #\# #\space) port)
(char-forward port 4)
(list 'h3 (aux-parse-header sxml port))]
[(pattern-match '(#\# #\# #\# #\# #\space) port)
(char-forward port 5)
(list 'h4 (aux-parse-header sxml port))]
[(pattern-match '(#\# #\# #\# #\# #\# #\space) port)
(char-forward port 6)
(list 'h5 (aux-parse-header sxml port))]
[(pattern-match '(#\# #\# #\# #\# #\# #\# #\space) port)
(char-forward port 7)
(list 'h6 (aux-parse-header sxml port))]
[else (aux-parse-header (scone sxml (read-char port)) port)]))
;; ================= block code ==========================
;; return the block code
(define-FA pattern-parse-block-code
(lambda (sxml port) '())
(lambda (sxml port) `(pre (code ,(car sxml) ,(car (cdr sxml)))))
((list '(#\` #\` #\` #\newline)) (list 4))
((list '(#\` #\` #\`)
'(()))
(list aux-parse-block-code-type
aux-parse-block-code-cont)))
(define aux-parse-block-code-type
(lambda (sxml port . idle)
(cond
[(context-return (lambda () `(@ (class ,(apply string sxml))))
port '((#\newline)) '(1))]
[(pattern-match '(#\` #\` #\` #\space) port)
(char-forward port 4)
(aux-parse-block-code-type (scone sxml (read-char port)) port)]
[(pattern-match '(#\` #\` #\`) port)
(char-forward port 3)
(aux-parse-block-code-type (scone sxml (read-char port)) port)]
[else (aux-parse-block-code-type (scone sxml (read-char port)) port)])))
(define aux-parse-block-code-cont
(lambda (sxml port . idle)
(cond
[(pattern-match '(#\` #\` #\` #\newline) port)
sxml]
[else (aux-parse-block-code-cont
(scone sxml (read-char port)) port)])))
;; =================== inline code ===========================
;; return the code type
(define-FA pattern-parse-inline-code
(aux-ignore 1)
(lambda (sxml port) (cons 'code sxml))
[(list '(#\`)) (list 1)]
[(list '(#\\)
'(()))
(list aux-escape
aux-common)])
;; ==================== strong =============================
(define-FA pattern-parse-strong
(aux-ignore 2)
(lambda (sxml port) (cons 'strong sxml))
[(list '(#\* #\*)
'(#\_ #\_))
(list 2 2)]
[(list '(#\\)
'(()))
(list aux-escape
aux-common)])
;; ===================== em ================================
;; return the emphsis
(define-FA pattern-parse-em
(aux-ignore 1)
(lambda (sxml port) (cons 'em sxml))
((list '(#\*)
'(#\_))
(list 1 1))
((list '(#\\)
'(()))
(list aux-escape
aux-common)))
;; ====================== strike through ================================
(define-FA pattern-parse-strike-through
(aux-ignore 2)
(lambda (sxml port) (list 'del sxml))
[(list '(#\~ #\~)) (list 2)]
[(list '(#\\)
'(#\* #\*)
'(#\_ #\_)
'(#\*)
'(#\_)
'(#\`)
'(()))
(list aux-escape
pattern-parse-strong
pattern-parse-strong
pattern-parse-em
pattern-parse-em
pattern-parse-inline-code
aux-common)])
;; ====================== hr ==================================
;; return (hr)
(define-FA pattern-parse-hr
(lambda (sxml port) '())
(lambda (sxml port) '(hr))
((list '(#\newline)) '(1))
((list '(()))
(list aux-common)))
;; ====================== link ==================================
(define-FA pattern-parse-link
(lambda (sxml port) '())
(lambda (sxml port) `(a ,(car (cdr sxml)) ,(car sxml)))
((list '(#\))) '(1))
((list '(#\()
'(#\[))
(list aux-parse-link-end
aux-parse-link-begin)))
(define (aux-parse-link-begin sxml port . idle)
(cond
[(pattern-match '(#\[) port)
(char-forward port 1)
(aux-parse-link-begin sxml port)]
[(pattern-match '(#\]) port)
(char-forward port 1)
sxml]
[else (aux-parse-link-begin (scone sxml (read-char port)) port)]))
(define (aux-parse-link-end sxml port . idle)
(cond
[(pattern-match '(#\() port)
(char-forward port 1)
(aux-parse-link-end sxml port)]
[(pattern-match '(#\)) port)
`(@ (href ,(apply string sxml)))]
[else (aux-parse-link-end (scone sxml (read-char port)) port)]))
;; ======================= img ================================
;; return an img
(define-FA pattern-parse-img
(lambda (sxml port) '())
(lambda (sxml port) `(img ,(car (cdr sxml)) ,(car sxml)))
((list '(#\))) '(1))
((list '(#\()
'(#\! #\[))
(list aux-parse-img-end
aux-parse-img-begin)))
(define (aux-parse-img-begin sxml port . idle)
(cond
[(pattern-match '(#\! #\[) port)
(char-forward port 2)
(aux-parse-img-begin sxml port)]
[(pattern-match '(#\]) port)
(char-forward port 1)
sxml]
[else (aux-parse-img-begin (scone sxml (read-char port)) port)]))
(define (aux-parse-img-end sxml port . idle)
(cond
[(pattern-match '(#\() port)
(char-forward port 1)
(aux-parse-img-end sxml port)]
[(pattern-match '(#\)) port)
`(@ (src ,(apply string sxml)))]
[else (aux-parse-img-end (scone sxml (read-char port)) port)]))
;; ========== math block (need external support =======
(define-FA pattern-parse-math
(aux-ignore 2)
(lambda (sxml port) (list 'span '(@ (class "math")) sxml))
[(list '(#\$ #\$)) (list 2)]
[(list '(()))
(list aux-common)])
)