doc edits, and fix scheme rendering for code that has multiple consecutive spaces

svn: r6267

original commit: 7e1e1dcf3d8c5d687e1fe37dc79b8dff535889bc
This commit is contained in:
Matthew Flatt 2007-05-24 12:19:35 +00:00
parent bc4e1b3fe6
commit 7fcbe97842
4 changed files with 26 additions and 9 deletions

View File

@ -202,11 +202,11 @@
(itemization-flows t))))) (itemization-flows t)))))
(define/override (render-other i part ht) (define/override (render-other i part ht)
(list (cond (cond
[(string? i) i] [(string? i) (list i)]
[(eq? i 'mdash) `(span " " ndash " ")] [(eq? i 'mdash) `(" " ndash " ")]
[(symbol? i) i] [(symbol? i) (list i)]
[else (format "~s" i)]))) [else (list (format "~s" i))]))
;; ---------------------------------------- ;; ----------------------------------------

View File

@ -123,6 +123,16 @@
c) c)
(loop (cdr l) (loop (cdr l)
(cons (car l) prev))))])))))) (cons (car l) prev))))]))))))
(define (literalize-spaces i)
(let ([m (regexp-match-positions #rx" +" i)])
(if m
(make-element
#f
(list (literalize-spaces (substring i 0 (caar m)))
(make-element 'hspace
(list (substring i (caar m) (cdar m))))
(literalize-spaces (substring i (cdar m)))))
i)))
(define (loop init-line! quote-depth) (define (loop init-line! quote-depth)
(lambda (c) (lambda (c)
(cond (cond
@ -258,7 +268,7 @@
[vd [vd
(make-link-element "schemevaluelink" (list s) vtag)] (make-link-element "schemevaluelink" (list s) vtag)]
[else s]))))) [else s])))))
s) (literalize-spaces s))
(cond (cond
[(positive? quote-depth) value-color] [(positive? quote-depth) value-color]
[(or (number? (syntax-e c)) [(or (number? (syntax-e c))

View File

@ -5,7 +5,7 @@
@title[#:tag "reader"]{Scribble Reader} @title[#:tag "reader"]{Scribble Reader}
The Scribble @|at|-reader is designed to be a convenient facility for The Scribble @|at|-reader is designed to be a convenient facility for
using free-form text in Scheme code, where ``@at'' is chosen as one of using free-form text in Scheme code, where ``@at'' is chosen as one of
the least-used characters in Scheme code. the least-used characters in Scheme code.
@ -247,7 +247,7 @@ have special meanings, but only in a few contexts. As described
above, the text turns to a sequence of string arguments for the above, the text turns to a sequence of string arguments for the
resulting form. Spaces at the beginning of lines are discarded (but resulting form. Spaces at the beginning of lines are discarded (but
see the information about indentation below), and newlines turn to see the information about indentation below), and newlines turn to
individual @scheme["\n"] strings. (Spcaces are preserved on a individual @scheme["\n"] strings. (Spaces are preserved on a
single-line text.) As part of trying to do the ``right thing,'' an single-line text.) As part of trying to do the ``right thing,'' an
empty line at the beginning and at the end are discarded, so: empty line at the beginning and at the end are discarded, so:

View File

@ -45,7 +45,14 @@ A single document is reprsented as a @defterm{part}:
@itemize{ @itemize{
@item{A string element is included in the result @item{A string element is included in the result
document verbatim.} document verbatim, except for space, and
unless the element's style is
@scheme['hspace]. In a style other than
@scheme['hspace], consecutive spaces in the
output may be collapsed togther or replaced
with a line break. In the style
@scheme['hspace], all text is converted to
uncollapsable spaces.}
@item{A symbol element is either @scheme['mdash], @item{A symbol element is either @scheme['mdash],
@scheme['ndash], @scheme['ldquo], @scheme['ndash], @scheme['ldquo],