about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-06-15 23:05:10 -0500
committerCase Duckworth2024-06-15 23:05:10 -0500
commit376b1293a4e7a5aa9ae98ebbe6e54b66dccad767 (patch)
tree8ea902a31ad9b67fa08308a3a3bdca71e3e422d4
parentChange format (diff)
downloadjimmy-376b1293a4e7a5aa9ae98ebbe6e54b66dccad767.tar.gz
jimmy-376b1293a4e7a5aa9ae98ebbe6e54b66dccad767.zip
Remove coment
-rw-r--r--lib/read.scm11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/read.scm b/lib/read.scm index f84b3a5..ea43b06 100644 --- a/lib/read.scm +++ b/lib/read.scm
@@ -36,17 +36,6 @@
36 ((null? words) ; empty line 36 ((null? words) ; empty line
37 (parse-lines (cdr lines) doc)) 37 (parse-lines (cdr lines) doc))
38 ((equal? (car words) "```") ; verbatim 38 ((equal? (car words) "```") ; verbatim
39 ;; Format for verbatim header:
40 ;; ``` ?html | command ...
41 ;; -- only run command on block with html output.
42 ;; other outputs process the block normally
43 ;; ``` ?!html | command ...
44 ;; -- only run command on block when *not* outputting html.
45 ;; html processes the block normally
46 ;; ``` ?:html | command ...
47 ;; -- like ?html, but ignore the block in non-html outputs.
48 ;;;; FIXME: I think this necessitates a special emit-verbatim
49 ;;;; function.
50 (parse-verbatim (cdr lines) doc '() 39 (parse-verbatim (cdr lines) doc '()
51 ;;; FIXME 40 ;;; FIXME
52 (cons 'verb (cdr words)))) 41 (cons 'verb (cdr words))))