Added 'newline items, made index pages use them instead of
table rows. (And some reformatting, of course.) svn: r8426 original commit: 642c0d60718d0d3daa5266f6402bea9957807aea
This commit is contained in:
parent
d2002d0a0d
commit
81179a7eea
|
@ -1,295 +1,279 @@
|
||||||
|
|
||||||
(module basic scheme/base
|
#lang scheme/base
|
||||||
(require "decode.ss"
|
|
||||||
"struct.ss"
|
|
||||||
"config.ss"
|
|
||||||
mzlib/list
|
|
||||||
mzlib/class
|
|
||||||
setup/main-collects
|
|
||||||
syntax/modresolve
|
|
||||||
(for-syntax scheme/base))
|
|
||||||
|
|
||||||
(provide title
|
(require "decode.ss"
|
||||||
section
|
"struct.ss"
|
||||||
subsection
|
"config.ss"
|
||||||
subsubsection
|
mzlib/list
|
||||||
subsubsub*section
|
mzlib/class
|
||||||
include-section)
|
setup/main-collects
|
||||||
|
syntax/modresolve
|
||||||
|
(for-syntax scheme/base))
|
||||||
|
|
||||||
(define (gen-tag content)
|
(provide title
|
||||||
(regexp-replace* "[^-a-zA-Z0-9_=]"
|
section
|
||||||
(content->string content)
|
subsection
|
||||||
"_"))
|
subsubsection
|
||||||
|
subsubsub*section
|
||||||
|
include-section)
|
||||||
|
|
||||||
(define (prefix->string p)
|
(define (gen-tag content)
|
||||||
(and p
|
(regexp-replace* "[^-a-zA-Z0-9_=]" (content->string content) "_"))
|
||||||
(if (string? p)
|
|
||||||
p
|
|
||||||
(module-path-prefix->string p))))
|
|
||||||
|
|
||||||
(define (convert-tag tag content)
|
(define (prefix->string p)
|
||||||
(if (list? tag)
|
(and p (if (string? p) p (module-path-prefix->string p))))
|
||||||
(apply append (map (lambda (t) (convert-tag t content)) tag))
|
|
||||||
`((part ,(or tag (gen-tag content))))))
|
|
||||||
|
|
||||||
(define (title #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f] #:version [version #f] . str)
|
(define (convert-tag tag content)
|
||||||
(let ([content (decode-content str)])
|
(if (list? tag)
|
||||||
(make-title-decl (prefix->string prefix)
|
(apply append (map (lambda (t) (convert-tag t content)) tag))
|
||||||
(convert-tag tag content)
|
`((part ,(or tag (gen-tag content))))))
|
||||||
version
|
|
||||||
style
|
|
||||||
content)))
|
|
||||||
|
|
||||||
(define (section #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f] . str)
|
(define (title #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f]
|
||||||
(let ([content (decode-content str)])
|
#:version [version #f] . str)
|
||||||
(make-part-start 0 (prefix->string prefix)
|
(let ([content (decode-content str)])
|
||||||
(convert-tag tag content)
|
(make-title-decl (prefix->string prefix)
|
||||||
style
|
(convert-tag tag content)
|
||||||
content)))
|
version
|
||||||
|
style
|
||||||
|
content)))
|
||||||
|
|
||||||
(define (subsection #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f] . str)
|
(define (section #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f]
|
||||||
(let ([content (decode-content str)])
|
. str)
|
||||||
(make-part-start 1
|
(let ([content (decode-content str)])
|
||||||
(prefix->string prefix)
|
(make-part-start 0 (prefix->string prefix)
|
||||||
(convert-tag tag content)
|
(convert-tag tag content)
|
||||||
style
|
style
|
||||||
content)))
|
content)))
|
||||||
|
|
||||||
(define (subsubsection #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f] . str)
|
(define (subsection #:tag [tag #f] #:tag-prefix [prefix #f] #:style [style #f]
|
||||||
(let ([content (decode-content str)])
|
. str)
|
||||||
(make-part-start 2
|
(let ([content (decode-content str)])
|
||||||
(prefix->string prefix)
|
(make-part-start 1
|
||||||
(convert-tag tag content)
|
(prefix->string prefix)
|
||||||
style
|
(convert-tag tag content)
|
||||||
content)))
|
style
|
||||||
|
content)))
|
||||||
|
|
||||||
(define (subsubsub*section #:tag [tag #f] . str)
|
(define (subsubsection #:tag [tag #f] #:tag-prefix [prefix #f]
|
||||||
(let ([content (decode-content str)])
|
#:style [style #f] . str)
|
||||||
(make-paragraph (list (make-element 'bold content)))))
|
(let ([content (decode-content str)])
|
||||||
|
(make-part-start 2
|
||||||
|
(prefix->string prefix)
|
||||||
|
(convert-tag tag content)
|
||||||
|
style
|
||||||
|
content)))
|
||||||
|
|
||||||
(define-syntax (include-section stx)
|
(define (subsubsub*section #:tag [tag #f] . str)
|
||||||
(syntax-case stx ()
|
(let ([content (decode-content str)])
|
||||||
[(_ mod)
|
(make-paragraph (list (make-element 'bold content)))))
|
||||||
(with-syntax ([mod (syntax-local-introduce #'mod)])
|
|
||||||
#'(begin
|
|
||||||
(require (only-in mod doc))
|
|
||||||
doc))]))
|
|
||||||
|
|
||||||
;; ----------------------------------------
|
(define-syntax (include-section stx)
|
||||||
|
(syntax-case stx ()
|
||||||
|
[(_ mod)
|
||||||
|
(with-syntax ([mod (syntax-local-introduce #'mod)])
|
||||||
|
#'(begin
|
||||||
|
(require (only-in mod doc))
|
||||||
|
doc))]))
|
||||||
|
|
||||||
(provide module-path-prefix->string)
|
;; ----------------------------------------
|
||||||
|
|
||||||
(define (module-path-prefix->string p)
|
(provide module-path-prefix->string)
|
||||||
(format "~a" (path->main-collects-relative
|
|
||||||
(resolve-module-path p #f))))
|
|
||||||
|
|
||||||
;; ----------------------------------------
|
(define (module-path-prefix->string p)
|
||||||
|
(format "~a" (path->main-collects-relative
|
||||||
|
(resolve-module-path p #f))))
|
||||||
|
|
||||||
(provide itemize item item?)
|
;; ----------------------------------------
|
||||||
|
|
||||||
(define (itemize . items)
|
(provide itemize item item?)
|
||||||
(let ([items (filter (lambda (v) (not (whitespace? v))) items)])
|
|
||||||
(for ([v items])
|
|
||||||
(unless (an-item? v)
|
|
||||||
(error 'itemize "expected an item, found something else: ~e" v)))
|
|
||||||
(make-itemization (map an-item-flow items))))
|
|
||||||
|
|
||||||
(define-struct an-item (flow))
|
(define (itemize . items)
|
||||||
(define (item? x) (an-item? x))
|
(let ([items (filter (lambda (v) (not (whitespace? v))) items)])
|
||||||
|
(for ([v items])
|
||||||
|
(unless (an-item? v)
|
||||||
|
(error 'itemize "expected an item, found something else: ~e" v)))
|
||||||
|
(make-itemization (map an-item-flow items))))
|
||||||
|
|
||||||
(define (item . str)
|
(define-struct an-item (flow))
|
||||||
(make-an-item (decode-flow str)))
|
(define (item? x) (an-item? x))
|
||||||
|
|
||||||
;; ----------------------------------------
|
(define (item . str)
|
||||||
|
(make-an-item (decode-flow str)))
|
||||||
|
|
||||||
(provide hspace
|
;; ----------------------------------------
|
||||||
elem aux-elem
|
|
||||||
italic bold
|
|
||||||
tt span-class
|
|
||||||
subscript superscript)
|
|
||||||
|
|
||||||
(define (hspace n)
|
(provide hspace
|
||||||
(make-element 'hspace (list (make-string n #\space))))
|
elem aux-elem
|
||||||
|
italic bold
|
||||||
|
tt span-class
|
||||||
|
subscript superscript)
|
||||||
|
|
||||||
(define (elem . str)
|
(define (hspace n)
|
||||||
(make-element #f (decode-content str)))
|
(make-element 'hspace (list (make-string n #\space))))
|
||||||
|
|
||||||
(define (aux-elem . s)
|
(define (elem . str)
|
||||||
(make-aux-element #f (decode-content s)))
|
(make-element #f (decode-content str)))
|
||||||
|
|
||||||
(define (italic . str)
|
(define (aux-elem . s)
|
||||||
(make-element 'italic (decode-content str)))
|
(make-aux-element #f (decode-content s)))
|
||||||
|
|
||||||
(define (bold . str)
|
(define (italic . str)
|
||||||
(make-element 'bold (decode-content str)))
|
(make-element 'italic (decode-content str)))
|
||||||
|
|
||||||
(define (tt . str)
|
(define (bold . str)
|
||||||
(let ([l (decode-content str)])
|
(make-element 'bold (decode-content str)))
|
||||||
(let ([l (let ([m (and (pair? l)
|
|
||||||
(string? (car l))
|
|
||||||
(regexp-match-positions #rx"^ +" (car l)))])
|
|
||||||
(if m
|
|
||||||
(cons (hspace (- (cdar m) (caar m)))
|
|
||||||
(cons
|
|
||||||
(substring (car l) (cdar m))
|
|
||||||
(cdr l)))
|
|
||||||
l))])
|
|
||||||
(if (andmap string? l)
|
|
||||||
(make-element 'tt l)
|
|
||||||
(make-element #f (map (lambda (s)
|
|
||||||
(if (or (string? s)
|
|
||||||
(symbol? s))
|
|
||||||
(make-element 'tt (list s))
|
|
||||||
s))
|
|
||||||
l))))))
|
|
||||||
|
|
||||||
(define (span-class classname . str)
|
(define (tt . str)
|
||||||
(make-element classname (decode-content str)))
|
(let* ([l (decode-content str)]
|
||||||
|
[l (let ([m (and (pair? l)
|
||||||
|
(string? (car l))
|
||||||
|
(regexp-match-positions #rx"^ +" (car l)))])
|
||||||
|
(if m
|
||||||
|
(list* (hspace (- (cdar m) (caar m)))
|
||||||
|
(substring (car l) (cdar m))
|
||||||
|
(cdr l))
|
||||||
|
l))])
|
||||||
|
(if (andmap string? l)
|
||||||
|
(make-element 'tt l)
|
||||||
|
(make-element #f (map (lambda (s)
|
||||||
|
(if (or (string? s) (symbol? s))
|
||||||
|
(make-element 'tt (list s))
|
||||||
|
s))
|
||||||
|
l)))))
|
||||||
|
|
||||||
(define (subscript . str)
|
(define (span-class classname . str)
|
||||||
(make-element 'subscript (decode-content str)))
|
(make-element classname (decode-content str)))
|
||||||
|
|
||||||
(define (superscript . str)
|
(define (subscript . str)
|
||||||
(make-element 'superscript (decode-content str)))
|
(make-element 'subscript (decode-content str)))
|
||||||
|
|
||||||
;; ----------------------------------------
|
(define (superscript . str)
|
||||||
|
(make-element 'superscript (decode-content str)))
|
||||||
|
|
||||||
(provide section-index index index* as-index index-section index-flow-elements)
|
;; ----------------------------------------
|
||||||
|
|
||||||
(define (section-index . elems)
|
(provide section-index index index* as-index index-section index-flow-elements)
|
||||||
(make-part-index-decl (map element->string elems) elems))
|
|
||||||
|
|
||||||
(define (record-index word-seq element-seq tag content)
|
(define (section-index . elems)
|
||||||
(make-index-element
|
(make-part-index-decl (map element->string elems) elems))
|
||||||
#f
|
|
||||||
(list (make-target-element #f content `(idx ,tag)))
|
|
||||||
`(idx ,tag)
|
|
||||||
word-seq
|
|
||||||
element-seq
|
|
||||||
#f))
|
|
||||||
|
|
||||||
(define (index* word-seq content-seq . s)
|
(define (record-index word-seq element-seq tag content)
|
||||||
(let ([key (make-generated-tag)])
|
(make-index-element #f
|
||||||
(record-index word-seq
|
(list (make-target-element #f content `(idx ,tag)))
|
||||||
content-seq
|
`(idx ,tag)
|
||||||
key
|
word-seq
|
||||||
(decode-content s))))
|
element-seq
|
||||||
|
#f))
|
||||||
|
|
||||||
(define (index word-seq . s)
|
(define (index* word-seq content-seq . s)
|
||||||
(let ([word-seq (if (string? word-seq)
|
(let ([key (make-generated-tag)])
|
||||||
(list word-seq)
|
(record-index word-seq content-seq key (decode-content s))))
|
||||||
word-seq)])
|
|
||||||
(apply index* word-seq word-seq s)))
|
|
||||||
|
|
||||||
(define (as-index . s)
|
(define (index word-seq . s)
|
||||||
(let ([key (make-generated-tag)]
|
(let ([word-seq (if (string? word-seq) (list word-seq) word-seq)])
|
||||||
[content (decode-content s)])
|
(apply index* word-seq word-seq s)))
|
||||||
(record-index (list (content->string content))
|
|
||||||
(list (make-element #f content))
|
|
||||||
key
|
|
||||||
content)))
|
|
||||||
|
|
||||||
(define (index-section #:title [title "Index"] #:tag [tag #f])
|
(define (as-index . s)
|
||||||
(make-unnumbered-part #f
|
(let ([key (make-generated-tag)]
|
||||||
`((part ,(or tag "doc-index")))
|
[content (decode-content s)])
|
||||||
(list title)
|
(record-index (list (content->string content))
|
||||||
'index
|
(list (make-element #f content))
|
||||||
null
|
key
|
||||||
(make-flow (index-flow-elements))
|
content)))
|
||||||
null))
|
|
||||||
|
|
||||||
(define (index-flow-elements)
|
(define (index-section #:title [title "Index"] #:tag [tag #f])
|
||||||
(define (commas l)
|
(make-unnumbered-part #f
|
||||||
(if (or (null? l) (null? (cdr l)))
|
`((part ,(or tag "doc-index")))
|
||||||
l
|
(list title)
|
||||||
(cdr (apply append (map (lambda (i) (list ", " i)) l)))))
|
'index
|
||||||
(define (cadr-string-lists<? a b)
|
null
|
||||||
(let loop ([a (cadr a)] [b (cadr b)])
|
(make-flow (index-flow-elements))
|
||||||
(cond [(null? b) #f]
|
null))
|
||||||
[(null? a) #t]
|
|
||||||
[(string-ci=? (car a) (car b))
|
|
||||||
(or (loop (cdr a) (cdr b))
|
|
||||||
;; Try string<? so "Foo" still precedes "foo"
|
|
||||||
(string<? (car a) (car b)))]
|
|
||||||
[else (string-ci<? (car a) (car b))])))
|
|
||||||
(define alpha (string->list "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
|
|
||||||
(define contents
|
|
||||||
(make-delayed-flow-element
|
|
||||||
(lambda (renderer sec ri)
|
|
||||||
(define l null)
|
|
||||||
(define alpha-starts (make-hash-table))
|
|
||||||
(hash-table-for-each
|
|
||||||
(let ([parent (collected-info-parent (part-collected-info sec ri))])
|
|
||||||
(if parent
|
|
||||||
(collected-info-info (part-collected-info parent ri))
|
|
||||||
(collect-info-ext-ht (resolve-info-ci ri))))
|
|
||||||
(lambda (k v)
|
|
||||||
(when (and (pair? k) (eq? 'index-entry (car k)))
|
|
||||||
(set! l (cons (cons (cadr k) v) l)))))
|
|
||||||
(set! l (sort l cadr-string-lists<?))
|
|
||||||
(make-table
|
|
||||||
'index
|
|
||||||
(list*
|
|
||||||
(list
|
|
||||||
(make-flow
|
|
||||||
(list
|
|
||||||
(make-paragraph
|
|
||||||
(let loop ([i l] [alpha alpha])
|
|
||||||
(define (add-letter letter l)
|
|
||||||
(list* (make-element "nonavigation" (list (string letter)))
|
|
||||||
" " l))
|
|
||||||
(cond [(null? alpha) null]
|
|
||||||
[(null? i) (add-letter (car alpha) (loop i (cdr alpha)))]
|
|
||||||
[else
|
|
||||||
(let* ([strs (cadr (car i))]
|
|
||||||
[letter (if (or (null? strs)
|
|
||||||
(string=? "" (car strs)))
|
|
||||||
#f
|
|
||||||
(string-ref (car strs) 0))])
|
|
||||||
(cond
|
|
||||||
[(not letter) (loop (cdr i) alpha)]
|
|
||||||
[(char-ci>? letter (car alpha))
|
|
||||||
(add-letter (car alpha) (loop i (cdr alpha)))]
|
|
||||||
[(char-ci=? letter (car alpha))
|
|
||||||
(hash-table-put! alpha-starts (car i) letter)
|
|
||||||
(list*
|
|
||||||
(make-element
|
|
||||||
(make-target-url
|
|
||||||
(format "#alpha:~a" (char-upcase letter))
|
|
||||||
#f)
|
|
||||||
(list (string (car alpha))))
|
|
||||||
" "
|
|
||||||
(loop (cdr i) (cdr alpha)))]
|
|
||||||
[else (loop (cdr i) alpha)]))]))))))
|
|
||||||
(list (make-flow (list (make-paragraph (list 'nbsp)))))
|
|
||||||
(map (lambda (i)
|
|
||||||
(let* ([e (make-link-element "indexlink"
|
|
||||||
(commas (caddr i))
|
|
||||||
(car i))]
|
|
||||||
[letter (hash-table-get alpha-starts i #f)]
|
|
||||||
[e (if letter
|
|
||||||
(make-element
|
|
||||||
(make-url-anchor (format "alpha:~a" letter))
|
|
||||||
(list e))
|
|
||||||
e)])
|
|
||||||
(list (make-flow (list (make-paragraph (list e)))))))
|
|
||||||
l))))))
|
|
||||||
(list contents))
|
|
||||||
|
|
||||||
;; ----------------------------------------
|
(define (index-flow-elements)
|
||||||
|
(define (commas l)
|
||||||
(provide table-of-contents
|
(if (or (null? l) (null? (cdr l)))
|
||||||
local-table-of-contents)
|
l
|
||||||
|
(cdr (apply append (map (lambda (i) (list ", " i)) l)))))
|
||||||
(define (table-of-contents)
|
(define (cadr-string-lists<? a b)
|
||||||
|
(let loop ([a (cadr a)] [b (cadr b)])
|
||||||
|
(cond [(null? b) #f]
|
||||||
|
[(null? a) #t]
|
||||||
|
[(string-ci=? (car a) (car b))
|
||||||
|
(or (loop (cdr a) (cdr b))
|
||||||
|
;; Try string<? so "Foo" still precedes "foo"
|
||||||
|
(string<? (car a) (car b)))]
|
||||||
|
[else (string-ci<? (car a) (car b))])))
|
||||||
|
(define alpha (string->list "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
|
||||||
|
(define contents
|
||||||
(make-delayed-flow-element
|
(make-delayed-flow-element
|
||||||
(lambda (renderer part ri)
|
(lambda (renderer sec ri)
|
||||||
(send renderer table-of-contents part ri))))
|
(define l null)
|
||||||
|
(define alpha-starts (make-hash-table))
|
||||||
|
(define (rows . rows)
|
||||||
|
(make-table 'index
|
||||||
|
(map (lambda (row)
|
||||||
|
(list (make-flow (list (make-paragraph row)))))
|
||||||
|
rows)))
|
||||||
|
(hash-table-for-each
|
||||||
|
(let ([parent (collected-info-parent (part-collected-info sec ri))])
|
||||||
|
(if parent
|
||||||
|
(collected-info-info (part-collected-info parent ri))
|
||||||
|
(collect-info-ext-ht (resolve-info-ci ri))))
|
||||||
|
(lambda (k v)
|
||||||
|
(when (and (pair? k) (eq? 'index-entry (car k)))
|
||||||
|
(set! l (cons (cons (cadr k) v) l)))))
|
||||||
|
(set! l (sort l cadr-string-lists<?))
|
||||||
|
(rows
|
||||||
|
(let loop ([i l] [alpha alpha])
|
||||||
|
(define (add-letter let l)
|
||||||
|
(list* (make-element "nonavigation" (list (string let))) " " l))
|
||||||
|
(cond [(null? alpha) null]
|
||||||
|
[(null? i) (add-letter (car alpha) (loop i (cdr alpha)))]
|
||||||
|
[else
|
||||||
|
(let* ([strs (cadr (car i))]
|
||||||
|
[letter (if (or (null? strs) (string=? "" (car strs)))
|
||||||
|
#f
|
||||||
|
(char-upcase (string-ref (car strs) 0)))])
|
||||||
|
(cond [(not letter) (loop (cdr i) alpha)]
|
||||||
|
[(char-ci>? letter (car alpha))
|
||||||
|
(add-letter (car alpha) (loop i (cdr alpha)))]
|
||||||
|
[(char-ci=? letter (car alpha))
|
||||||
|
(hash-table-put! alpha-starts (car i) letter)
|
||||||
|
(list* (make-element
|
||||||
|
(make-target-url (format "#alpha:~a" letter)
|
||||||
|
#f)
|
||||||
|
(list (string (car alpha))))
|
||||||
|
" "
|
||||||
|
(loop (cdr i) (cdr alpha)))]
|
||||||
|
[else (loop (cdr i) alpha)]))]))
|
||||||
|
(list 'nbsp)
|
||||||
|
(apply append
|
||||||
|
(map (lambda (i)
|
||||||
|
(define e (make-link-element
|
||||||
|
"indexlink" (commas (caddr i)) (car i)))
|
||||||
|
(list (cond [(hash-table-get alpha-starts i #f)
|
||||||
|
=> (lambda (let)
|
||||||
|
(make-element
|
||||||
|
(make-url-anchor
|
||||||
|
(format "alpha:~a" (char-upcase let)))
|
||||||
|
(list e)))]
|
||||||
|
[else e])
|
||||||
|
'newline))
|
||||||
|
l))))))
|
||||||
|
(list contents))
|
||||||
|
|
||||||
(define (local-table-of-contents)
|
;; ----------------------------------------
|
||||||
(make-delayed-flow-element
|
|
||||||
(lambda (renderer part ri)
|
|
||||||
(send renderer local-table-of-contents part ri)))))
|
|
||||||
|
|
||||||
|
(provide table-of-contents
|
||||||
|
local-table-of-contents)
|
||||||
|
|
||||||
|
(define (table-of-contents)
|
||||||
|
(make-delayed-flow-element
|
||||||
|
(lambda (renderer part ri)
|
||||||
|
(send renderer table-of-contents part ri))))
|
||||||
|
|
||||||
|
(define (local-table-of-contents)
|
||||||
|
(make-delayed-flow-element
|
||||||
|
(lambda (renderer part ri)
|
||||||
|
(send renderer local-table-of-contents part ri))))
|
||||||
|
|
|
@ -581,21 +581,23 @@
|
||||||
|
|
||||||
(define/override (render-other i part ri)
|
(define/override (render-other i part ri)
|
||||||
(cond
|
(cond
|
||||||
[(string? i) (let ([m (and (extra-breaking?)
|
[(string? i)
|
||||||
(regexp-match-positions #rx"[-:/]" i))])
|
(let ([m (and (extra-breaking?)
|
||||||
(if m
|
(regexp-match-positions #rx"[-:/]" i))])
|
||||||
(list* (substring i 0 (cdar m))
|
(if m
|
||||||
;; Most browsers wrap after a hyphen. The
|
(list* (substring i 0 (cdar m))
|
||||||
;; one that doesn't, Firefox, pays attention
|
;; Most browsers wrap after a hyphen. The
|
||||||
;; to wbr. Some browsers ignore wbr, but
|
;; one that doesn't, Firefox, pays attention
|
||||||
;; at they don't do strange things with it.
|
;; to wbr. Some browsers ignore wbr, but
|
||||||
(if (equal? #\- (string-ref i (caar m)))
|
;; at least they don't do strange things with it.
|
||||||
'(wbr)
|
(if (equal? #\- (string-ref i (caar m)))
|
||||||
`(span ((class "mywbr")) " "))
|
'(wbr)
|
||||||
(render-other (substring i (cdar m)) part ri))
|
`(span ((class "mywbr")) " "))
|
||||||
(ascii-ize i)))]
|
(render-other (substring i (cdar m)) part ri))
|
||||||
|
(ascii-ize i)))]
|
||||||
[(eq? i 'mdash) `(" " ndash " ")]
|
[(eq? i 'mdash) `(" " ndash " ")]
|
||||||
[(eq? i 'hline) `((hr))]
|
[(eq? i 'hline) `((hr))]
|
||||||
|
[(eq? i 'newline) `((br))]
|
||||||
[(symbol? i) (list i)]
|
[(symbol? i) (list i)]
|
||||||
[else (list (format "~s" i))]))
|
[else (list (format "~s" i))]))
|
||||||
|
|
||||||
|
|
|
@ -343,6 +343,7 @@
|
||||||
[(string? i) (display-protected i)]
|
[(string? i) (display-protected i)]
|
||||||
[(symbol? i) (display
|
[(symbol? i) (display
|
||||||
(case i
|
(case i
|
||||||
|
[(newline) "\\\\"]
|
||||||
[(nbsp) "~"]
|
[(nbsp) "~"]
|
||||||
[(mdash) "---"]
|
[(mdash) "---"]
|
||||||
[(ndash) "--"]
|
[(ndash) "--"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user