make scribble reader section fit narrower column
svn: r6265 original commit: 3c25a6ad93e78433981e798b920f9931e9d605c6
This commit is contained in:
parent
7fb6f9e3f9
commit
41c752b9b4
|
@ -307,7 +307,7 @@ the end of the text. They are therefore allowed, as long as they are
|
|||
balanced.
|
||||
|
||||
@scribble-examples[
|
||||
"@foo{f{o}o}"]
|
||||
"@foo{f{o}o}"
|
||||
]
|
||||
|
||||
There is also an alternative syntax for the body, one that specifies a
|
||||
|
@ -492,8 +492,8 @@ the need for functions, for example:
|
|||
@verbatim[
|
||||
#<<EOS
|
||||
> (define (important . text) @`b{@u{@big{@,@text}}})
|
||||
> (important @`p{This is an important announcement!
|
||||
> (important @`p{An important announcement!
|
||||
Read it!})
|
||||
(b (u (big (p "This is an important announcement!" "\n" "Read it!"))))
|
||||
(b (u (big (p "An important announcement!" "\n" "Read it!"))))
|
||||
EOS
|
||||
]
|
||||
|
|
|
@ -35,7 +35,12 @@
|
|||
(map (lambda (line)
|
||||
(let ([line (if (string? line)
|
||||
(list (litchar/lines line)
|
||||
(scheme:to-element (scribble:read (open-input-string line))))
|
||||
(scheme:to-paragraph
|
||||
(let ([p (open-input-string line)])
|
||||
(port-count-lines! p)
|
||||
(if (regexp-match? #rx"\n" line)
|
||||
(scribble:read-syntax #f p)
|
||||
(scribble:read p)))))
|
||||
line)])
|
||||
(list (as-flow spacer)
|
||||
(as-flow (if line (car line) ""))
|
||||
|
|
Loading…
Reference in New Issue
Block a user