fix Scribble and some docs after today's changes

svn: r9142

original commit: fc033290daa91bbd96aed09c96cdf34e1306be03
This commit is contained in:
Matthew Flatt 2008-04-02 23:34:47 +00:00
parent 649d3e94fe
commit 6067b7d4ea
11 changed files with 108 additions and 82 deletions

View File

@ -150,14 +150,14 @@
(define/public (collect-flow p ci) (define/public (collect-flow p ci)
(for ([p (flow-paragraphs p)]) (for ([p (flow-paragraphs p)])
(collect-flow-element p ci))) (collect-block p ci)))
(define/public (collect-flow-element p ci) (define/public (collect-block p ci)
(cond (cond
[(table? p) (collect-table p ci)] [(table? p) (collect-table p ci)]
[(itemization? p) (collect-itemization p ci)] [(itemization? p) (collect-itemization p ci)]
[(blockquote? p) (collect-blockquote p ci)] [(blockquote? p) (collect-blockquote p ci)]
[(delayed-flow-element? p) (void)] [(delayed-block? p) (void)]
[else (collect-paragraph p ci)])) [else (collect-paragraph p ci)]))
(define/public (collect-table i ci) (define/public (collect-table i ci)
@ -170,7 +170,7 @@
(define/public (collect-blockquote i ci) (define/public (collect-blockquote i ci)
(for ([d (blockquote-paragraphs i)]) (for ([d (blockquote-paragraphs i)])
(collect-flow-element d ci))) (collect-block d ci)))
(define/public (collect-element i ci) (define/public (collect-element i ci)
(if (part-relative-element? i) (if (part-relative-element? i)
@ -230,17 +230,17 @@
(define/public (resolve-flow p d ri) (define/public (resolve-flow p d ri)
(for ([p (flow-paragraphs p)]) (for ([p (flow-paragraphs p)])
(resolve-flow-element p d ri))) (resolve-block p d ri)))
(define/public (resolve-flow-element p d ri) (define/public (resolve-block p d ri)
(cond (cond
[(table? p) (resolve-table p d ri)] [(table? p) (resolve-table p d ri)]
[(itemization? p) (resolve-itemization p d ri)] [(itemization? p) (resolve-itemization p d ri)]
[(blockquote? p) (resolve-blockquote p d ri)] [(blockquote? p) (resolve-blockquote p d ri)]
[(delayed-flow-element? p) [(delayed-block? p)
(let ([v ((delayed-flow-element-resolve p) this d ri)]) (let ([v ((delayed-block-resolve p) this d ri)])
(hash-table-put! (resolve-info-delays ri) p v) (hash-table-put! (resolve-info-delays ri) p v)
(resolve-flow-element v d ri))] (resolve-block v d ri))]
[else (resolve-paragraph p d ri)])) [else (resolve-paragraph p d ri)]))
(define/public (resolve-table i d ri) (define/public (resolve-table i d ri)
@ -253,7 +253,7 @@
(define/public (resolve-blockquote i d ri) (define/public (resolve-blockquote i d ri)
(for ([f (blockquote-paragraphs i)]) (for ([f (blockquote-paragraphs i)])
(resolve-flow-element f d ri))) (resolve-block f d ri)))
(define/public (resolve-element i d ri) (define/public (resolve-element i d ri)
(cond (cond
@ -315,22 +315,22 @@
(if (null? (flow-paragraphs p)) (if (null? (flow-paragraphs p))
null null
(append (append
(render-flow-element (car (flow-paragraphs p)) (render-block (car (flow-paragraphs p))
part ri start-inline?) part ri start-inline?)
(apply append (apply append
(map (lambda (p) (map (lambda (p)
(render-flow-element p part ri #f)) (render-block p part ri #f))
(cdr (flow-paragraphs p))))))) (cdr (flow-paragraphs p)))))))
(define/public (render-flow-element p part ri inline?) (define/public (render-block p part ri inline?)
(cond (cond
[(table? p) (if (auxiliary-table? p) [(table? p) (if (auxiliary-table? p)
(render-auxiliary-table p part ri) (render-auxiliary-table p part ri)
(render-table p part ri inline?))] (render-table p part ri inline?))]
[(itemization? p) (render-itemization p part ri)] [(itemization? p) (render-itemization p part ri)]
[(blockquote? p) (render-blockquote p part ri)] [(blockquote? p) (render-blockquote p part ri)]
[(delayed-flow-element? p) [(delayed-block? p)
(render-flow-element (delayed-flow-element-flow-elements p ri) part ri inline?)] (render-block (delayed-block-blocks p ri) part ri inline?)]
[else (render-paragraph p part ri)])) [else (render-paragraph p part ri)]))
(define/public (render-auxiliary-table i part ri) (define/public (render-auxiliary-table i part ri)
@ -345,7 +345,7 @@
(itemization-flows i))) (itemization-flows i)))
(define/public (render-blockquote i part ri) (define/public (render-blockquote i part ri)
(map (lambda (d) (render-flow-element d part ri #f)) (map (lambda (d) (render-block d part ri #f))
(blockquote-paragraphs i))) (blockquote-paragraphs i)))
(define/public (render-element i part ri) (define/public (render-element i part ri)

View File

@ -162,7 +162,7 @@
;; ---------------------------------------- ;; ----------------------------------------
(provide section-index index index* as-index index-section index-flow-elements) (provide section-index index index* as-index index-section index-blocks)
(define (section-index . elems) (define (section-index . elems)
(make-part-index-decl (map element->string elems) elems)) (make-part-index-decl (map element->string elems) elems))
@ -199,10 +199,10 @@
(list title) (list title)
'index 'index
null null
(make-flow (index-flow-elements)) (make-flow (index-blocks))
null)) null))
(define (index-flow-elements) (define (index-blocks)
(define (commas l) (define (commas l)
(if (or (null? l) (null? (cdr l))) (if (or (null? l) (null? (cdr l)))
l l
@ -277,7 +277,7 @@
(list e)))] (list e)))]
[else e])) [else e]))
l))))) l)))))
(list (make-delayed-flow-element contents))) (list (make-delayed-block contents)))
;; ---------------------------------------- ;; ----------------------------------------
@ -285,11 +285,11 @@
local-table-of-contents) local-table-of-contents)
(define (table-of-contents) (define (table-of-contents)
(make-delayed-flow-element (make-delayed-block
(lambda (renderer part ri) (lambda (renderer part ri)
(send renderer table-of-contents part ri)))) (send renderer table-of-contents part ri))))
(define (local-table-of-contents) (define (local-table-of-contents)
(make-delayed-flow-element (make-delayed-block
(lambda (renderer part ri) (lambda (renderer part ri)
(send renderer local-table-of-contents part ri)))) (send renderer local-table-of-contents part ri))))

View File

@ -10,6 +10,7 @@
decode-flow decode-flow
decode-paragraph decode-paragraph
decode-content decode-content
(rename decode-content decode-elements)
decode-string decode-string
whitespace?) whitespace?)
@ -105,7 +106,7 @@
(title-decl-tags (car l)) (title-decl-tags (car l))
(title-decl-version (car l)) (title-decl-version (car l))
(title-decl-style (car l)))])] (title-decl-style (car l)))])]
[(flow-element? (car l)) [(block? (car l))
(let ([para (decode-accum-para accum)] (let ([para (decode-accum-para accum)]
[part (decode-flow* (cdr l) keys colls tag-prefix tags vers style [part (decode-flow* (cdr l) keys colls tag-prefix tags vers style
title part-depth)]) title part-depth)])

View File

@ -181,7 +181,7 @@
(define (render-mixin %) (define (render-mixin %)
(class % (class %
(inherit render-content (inherit render-content
render-flow-element render-block
collect-part collect-part
install-file install-file
get-dest-directory get-dest-directory
@ -337,13 +337,13 @@
(let loop ([t t]) (let loop ([t t])
(if (table? t) (if (table? t)
(render-table t d ri #f) (render-table t d ri #f)
(loop (delayed-flow-element-flow-elements t ri))))) (loop (delayed-block-blocks t ri)))))
(filter (lambda (e) (filter (lambda (e)
(let loop ([e e]) (let loop ([e e])
(or (and (auxiliary-table? e) (or (and (auxiliary-table? e)
(pair? (table-flowss e))) (pair? (table-flowss e)))
(and (delayed-flow-element? e) (and (delayed-block? e)
(loop (delayed-flow-element-flow-elements e ri)))))) (loop (delayed-block-blocks e ri))))))
(flow-paragraphs (part-flow d)))))))))) (flow-paragraphs (part-flow d))))))))))
(define/public (get-onthispage-label) (define/public (get-onthispage-label)
@ -368,8 +368,8 @@
;; get internal targets: ;; get internal targets:
(letrec ([flow-targets (letrec ([flow-targets
(lambda (flow) (lambda (flow)
(apply append (map flow-element-targets (flow-paragraphs flow))))] (apply append (map block-targets (flow-paragraphs flow))))]
[flow-element-targets [block-targets
(lambda (e) (lambda (e)
(cond (cond
[(table? e) (table-targets e)] [(table? e) (table-targets e)]
@ -377,8 +377,8 @@
[(itemization? e) [(itemization? e)
(apply append (map flow-targets (itemization-flows e)))] (apply append (map flow-targets (itemization-flows e)))]
[(blockquote? e) [(blockquote? e)
(apply append (map flow-element-targets (blockquote-paragraphs e)))] (apply append (map block-targets (blockquote-paragraphs e)))]
[(delayed-flow-element? e) [(delayed-block? e)
null]))] null]))]
[para-targets [para-targets
(lambda (para) (lambda (para)
@ -412,7 +412,7 @@
(flow-targets f))) (flow-targets f)))
flows))) flows)))
(table-flowss table))))]) (table-flowss table))))])
(apply append (map flow-element-targets (flow-paragraphs (part-flow d))))) (apply append (map block-targets (flow-paragraphs (part-flow d)))))
(map flatten (part-parts d)))))] (map flatten (part-parts d)))))]
[any-parts? (ormap part? ps)]) [any-parts? (ormap part? ps)])
(if (null? ps) (if (null? ps)
@ -647,10 +647,10 @@
[(and (table? (car f)) [(and (table? (car f))
(or (not special-last?) (or (not special-last?)
(not (null? (cdr f))))) (not (null? (cdr f)))))
(cons `(p ,@(render-flow-element (car f) part ri inline?)) (cons `(p ,@(render-block (car f) part ri inline?))
(loop (cdr f) #f))] (loop (cdr f) #f))]
[else [else
(append (render-flow-element (car f) part ri inline?) (append (render-block (car f) part ri inline?)
(loop (cdr f) #f))]))) (loop (cdr f) #f))])))
(define/override (render-flow p part ri start-inline?) (define/override (render-flow p part ri start-inline?)
@ -757,7 +757,26 @@
[(url-anchor? style) [(url-anchor? style)
`((a ((name ,(url-anchor-name style))) `((a ((name ,(url-anchor-name style)))
,@(super render-element e part ri)))] ,@(super render-element e part ri)))]
[(image-file? style) `((img ((src ,(install-file (image-file-path style))))))] [(image-file? style)
(let* ([src (image-file-path style)]
[scale (image-file-scale style)]
[sz (if (= 1.0 scale)
null
;; Try to extract file size:
(call-with-input-file*
src
(lambda (in)
(if (regexp-try-match #px#"^\211PNG.{12}" in)
(let ([w (read-bytes 4 in)]
[h (read-bytes 4 in)]
[to-num (lambda (s)
(number->string
(inexact->exact
(floor (* scale (integer-bytes->integer s #f #t))))))])
`((width ,(to-num w))
(height ,(to-num h))))
null))))])
`((img ((src ,(install-file src)) ,@sz))))]
[else (super render-element e part ri)]))) [else (super render-element e part ri)])))
(define/override (render-table t part ri need-inline?) (define/override (render-table t part ri need-inline?)
@ -835,7 +854,7 @@
null) null)
,@(apply append ,@(apply append
(map (lambda (i) (map (lambda (i)
(render-flow-element i part ri #f)) (render-block i part ri #f))
(blockquote-paragraphs t)))))) (blockquote-paragraphs t))))))
(define/override (render-itemization t part ri) (define/override (render-itemization t part ri)

View File

@ -22,7 +22,7 @@
(define/override (get-suffix) #".tex") (define/override (get-suffix) #".tex")
(inherit render-flow (inherit render-flow
render-flow-element render-block
render-content render-content
install-file install-file
format-number) format-number)
@ -297,7 +297,7 @@
(printf "\n\n\\begin{~a}\n" kind) (printf "\n\n\\begin{~a}\n" kind)
(parameterize ([current-table-mode (list "blockquote" t)]) (parameterize ([current-table-mode (list "blockquote" t)])
(for-each (lambda (e) (for-each (lambda (e)
(render-flow-element e part ri #f)) (render-block e part ri #f))
(blockquote-paragraphs t))) (blockquote-paragraphs t)))
(printf "\n\n\\end{~a}\n" kind) (printf "\n\n\\end{~a}\n" kind)
null)) null))

View File

@ -1243,7 +1243,7 @@
;; multiple results ;; multiple results
(if (null? res) (if (null? res)
'nbsp 'nbsp
(let ([w (apply max 0 (map flow-element-width res))]) (let ([w (apply max 0 (map block-width res))])
(if (or (ormap table? res) (if (or (ormap table? res)
(w . > . 30)) (w . > . 30))
(make-table (make-table
@ -1266,7 +1266,7 @@
(+ (prototype-size args max max) (+ (prototype-size args max max)
(prototype-depth prototype) (prototype-depth prototype)
(element-width tagged))) (element-width tagged)))
(flow-element-width res)) (block-width res))
. >= . (- max-proto-width 7))] . >= . (- max-proto-width 7))]
[(end) (list (to-flow spacer) [(end) (list (to-flow spacer)
(to-flow 'rarr) (to-flow 'rarr)
@ -1365,10 +1365,10 @@
[(not (arg-special? arg)) [(not (arg-special? arg))
(let* ([arg-cont (arg-contract)] (let* ([arg-cont (arg-contract)]
[base-len (+ 5 (string-length (symbol->string (arg-id arg))) [base-len (+ 5 (string-length (symbol->string (arg-id arg)))
(flow-element-width arg-cont))] (block-width arg-cont))]
[arg-val (and arg-val (arg-val))] [arg-val (and arg-val (arg-val))]
[def-len (if (arg-optional? arg) [def-len (if (arg-optional? arg)
(flow-element-width arg-val) (block-width arg-val)
0)] 0)]
[base-list [base-list
(list (list
@ -1675,7 +1675,7 @@
spacer ":" spacer)))) spacer ":" spacer))))
(make-flow (make-flow
(list (list
(if (flow-element? result-contract) (if (block? result-contract)
result-contract result-contract
(make-paragraph (list result-contract))))))))))) (make-paragraph (list result-contract)))))))))))
stx-ids names result-contracts)) stx-ids names result-contracts))
@ -2174,7 +2174,7 @@
[else i])) [else i]))
body) body)
(list (list
(make-delayed-flow-element (make-delayed-block
(lambda (r d ri) (lambda (r d ri)
(make-inherited-table r d ri decl)))))) (make-inherited-table r d ri decl))))))

View File

@ -123,13 +123,13 @@
(list? (cadr s)))) (list? (cadr s))))
(null? (cddr s)))) (null? (cddr s))))
(provide flow-element?) (provide block?)
(define (flow-element? p) (define (block? p)
(or (paragraph? p) (or (paragraph? p)
(table? p) (table? p)
(itemization? p) (itemization? p)
(blockquote? p) (blockquote? p)
(delayed-flow-element? p))) (delayed-block? p)))
(provide-structs (provide-structs
[part ([tag-prefix (or/c false/c string?)] [part ([tag-prefix (or/c false/c string?)]
@ -141,17 +141,17 @@
[parts (listof part?)])] [parts (listof part?)])]
[(unnumbered-part part) ()] [(unnumbered-part part) ()]
[(versioned-part part) ([version (or/c string? false/c)])] [(versioned-part part) ([version (or/c string? false/c)])]
[flow ([paragraphs (listof flow-element?)])] [flow ([paragraphs (listof block?)])]
[paragraph ([content list?])] [paragraph ([content list?])]
[(styled-paragraph paragraph) ([style any/c])] [(styled-paragraph paragraph) ([style any/c])]
[table ([style any/c] [table ([style any/c]
[flowss (listof (listof (or/c flow? (one-of/c 'cont))))])] [flowss (listof (listof (or/c flow? (one-of/c 'cont))))])]
[(auxiliary-table table) ()] [(auxiliary-table table) ()]
[delayed-flow-element ([resolve (any/c part? resolve-info? . -> . flow-element?)])] [delayed-block ([resolve (any/c part? resolve-info? . -> . block?)])]
[itemization ([flows (listof flow?)])] [itemization ([flows (listof flow?)])]
[(styled-itemization itemization) ([style any/c])] [(styled-itemization itemization) ([style any/c])]
[blockquote ([style any/c] [blockquote ([style any/c]
[paragraphs (listof flow-element?)])] [paragraphs (listof block?)])]
;; content = list of elements ;; content = list of elements
[element ([style any/c] [element ([style any/c]
[content list?])] [content list?])]
@ -213,8 +213,8 @@
(define (delayed-element-content e ri) (define (delayed-element-content e ri)
(hash-table-get (resolve-info-delays ri) e)) (hash-table-get (resolve-info-delays ri) e))
(provide delayed-flow-element-flow-elements) (provide delayed-block-blocks)
(define (delayed-flow-element-flow-elements p ri) (define (delayed-block-blocks p ri)
(hash-table-get (resolve-info-delays ri) p)) (hash-table-get (resolve-info-delays ri) p))
(provide current-serialize-resolve-info) (provide current-serialize-resolve-info)
@ -429,7 +429,7 @@
;; ---------------------------------------- ;; ----------------------------------------
(provide flow-element-width (provide block-width
element-width) element-width)
(define (element-width s) (define (element-width s)
@ -444,15 +444,15 @@
(apply + (map element-width (paragraph-content s)))) (apply + (map element-width (paragraph-content s))))
(define (flow-width f) (define (flow-width f)
(apply max 0 (map flow-element-width (flow-paragraphs f)))) (apply max 0 (map block-width (flow-paragraphs f))))
(define (flow-element-width p) (define (block-width p)
(cond (cond
[(paragraph? p) (paragraph-width p)] [(paragraph? p) (paragraph-width p)]
[(table? p) (table-width p)] [(table? p) (table-width p)]
[(itemization? p) (itemization-width p)] [(itemization? p) (itemization-width p)]
[(blockquote? p) (blockquote-width p)] [(blockquote? p) (blockquote-width p)]
[(delayed-flow-element? p) 1])) [(delayed-block? p) 1]))
(define (table-width p) (define (table-width p)
(let ([flowss (table-flowss p)]) (let ([flowss (table-flowss p)])

View File

@ -17,7 +17,7 @@
(inherit render-content (inherit render-content
render-paragraph render-paragraph
render-flow-element) render-block)
(define/override (render-part d ht) (define/override (render-part d ht)
(let ([number (collected-info-number (part-collected-info d ht))]) (let ([number (collected-info-number (part-collected-info d ht))])
@ -50,10 +50,10 @@
null null
(apply (apply
append append
(render-flow-element (car f) part ht start-inline?) (render-block (car f) part ht start-inline?)
(map (lambda (p) (map (lambda (p)
(newline) (newline) (newline) (newline)
(render-flow-element p part ht #f)) (render-block p part ht #f))
(cdr f)))))) (cdr f))))))
(define/override (render-table i part ht inline?) (define/override (render-table i part ht inline?)

View File

@ -93,6 +93,11 @@ Decodes a sequence of elements.
} }
@defproc[(decode-elements [lst list?]) list?]{
An alias for @scheme[decode-content].
}
@defproc[(decode-string [s string?]) list?]{ @defproc[(decode-string [s string?]) list?]{
Decodes a single string to produce a list of elements. Decodes a single string to produce a list of elements.

View File

@ -37,11 +37,11 @@ A @deftech{part} is an instance of @scheme[part]; among other things,
subsection (incorporated via @scheme[include-section]) as a document. subsection (incorporated via @scheme[include-section]) as a document.
A @deftech{flow} is an instance of @scheme[flow]; it has a list of A @deftech{flow} is an instance of @scheme[flow]; it has a list of
@techlink{flow elements}. @techlink{blocks}.
A @deftech{flow element} is either a @techlink{table}, an A @deftech{block} is either a @techlink{table}, an
@techlink{itemization}, @techlink{blockquote}, @techlink{paragraph}, @techlink{itemization}, @techlink{blockquote}, @techlink{paragraph},
or a @techlink{delayed flow element}. or a @techlink{delayed block}.
@itemize{ @itemize{
@ -54,7 +54,7 @@ A @deftech{flow element} is either a @techlink{table}, an
it has a list of @techlink{flows}.} it has a list of @techlink{flows}.}
@item{A @deftech{blockquote} is an instance of @item{A @deftech{blockquote} is an instance of
@scheme[blockquote]; it has list of @tech{flow elements} @scheme[blockquote]; it has list of @tech{blocks}
that are indented according to a specified style.} that are indented according to a specified style.}
@item{A @deftech{paragraph} is an instance of @item{A @deftech{paragraph} is an instance of
@ -144,10 +144,10 @@ A @deftech{flow element} is either a @techlink{table}, an
}}}} }}}}
@item{A @deftech{delayed flow element} is an instance of @item{A @deftech{delayed block} is an instance of
@scheme[delayed-flow-element], which has a procedure that @scheme[delayed-block], which has a procedure that
is called in the @techlink{resolve pass} of document is called in the @techlink{resolve pass} of document
processing to obtain a @defterm{flow element}.} processing to obtain a @defterm{block}.}
} }
@ -212,7 +212,7 @@ can be extracted with @scheme[part-collected-info], which includes a
part's number and its parent part (or @scheme[#f]). More generally, part's number and its parent part (or @scheme[#f]). More generally,
the @scheme[resolve-get] method looks up information previously the @scheme[resolve-get] method looks up information previously
collected. This resolve-time information is normally obtained by the collected. This resolve-time information is normally obtained by the
procedure associated with a @techlink{delayed flow element} or procedure associated with a @techlink{delayed block} or
@techlink{delayed element}. @techlink{delayed element}.
The @scheme[resolve-get] information accepts both a @scheme[part] and The @scheme[resolve-get] information accepts both a @scheme[part] and
@ -292,7 +292,7 @@ representing the whole document. The default version for a document is
@defstruct[flow ([paragraphs (listof flow-element?)])]{ @defstruct[flow ([paragraphs (listof flow-element?)])]{
A @techlink{flow} has a list of @tech{flow elements}. A @techlink{flow} has a list of @tech{blocks}.
} }
@ -330,16 +330,16 @@ A @techlink{itemization} has a list of flows.
@defstruct[blockquote ([style any/c] @defstruct[blockquote ([style any/c]
[paragraphs (listof flow-element?)])]{ [paragraphs (listof flow-element?)])]{
A @techlink{blockquote} has a style and a list of @tech{flow A @techlink{blockquote} has a style and a list of @tech{blocks}. The
elements}. The @scheme[style] field is normally a string that @scheme[style] field is normally a string that corresponds to a CSS
corresponds to a CSS class for HTML output. class for HTML output.
} }
@defstruct[delayed-flow-element ([resolve (any/c part? resolve-info? . -> . flow-element?)])]{ @defstruct[delayed-block ([resolve (any/c part? resolve-info? . -> . flow-element?)])]{
The @scheme[resolve] procedure is called during the @techlink{resolve The @scheme[resolve] procedure is called during the @techlink{resolve
pass} to obtain a normal @tech{flow element}. The first argument to pass} to obtain a normal @tech{block}. The first argument to
@scheme[resolve] is the renderer. @scheme[resolve] is the renderer.
} }
@ -448,8 +448,8 @@ Instances of this structure type are intended for use in titles, where
[plain (-> any/c)])]{ [plain (-> any/c)])]{
The @scheme[render] procedure's arguments are the same as for The @scheme[render] procedure's arguments are the same as for
@scheme[delayed-flow-element], but the result is @techlink{content} (i.e., @scheme[delayed-block], but the result is @techlink{content} (i.e.,
a list of @techlink{elements}). Unlike @scheme[delayed-flow-element], the a list of @techlink{elements}). Unlike @scheme[delayed-block], the
result of the @scheme[render] procedure's argument is remembered on result of the @scheme[render] procedure's argument is remembered on
the first call for re-use for a particular resolve pass. the first call for re-use for a particular resolve pass.
@ -469,7 +469,7 @@ pass}.
[sizer (-> any/c)] [sizer (-> any/c)]
[plain (-> any/c)])]{ [plain (-> any/c)])]{
Similar to @scheme[delayed-flow-element], but the replacement Similar to @scheme[delayed-block], but the replacement
@techlink{content} is obtained in the @techlink{collect pass} by @techlink{content} is obtained in the @techlink{collect pass} by
calling the function in the @scheme[resolve] field. calling the function in the @scheme[resolve] field.
@ -512,16 +512,17 @@ Used as a style for an @scheme[element]. The @scheme[style] at this
layer is a style for the hyperlink.} layer is a style for the hyperlink.}
@defstruct[image-file ([path path-string?])]{ @defstruct[image-file ([path path-string?]
[scale real?])]{
Used as a style for an @scheme[element].} Used as a style for an @scheme[element].}
@defproc[(flow-element? [v any/c]) boolean?]{ @defproc[(block? [v any/c]) boolean?]{
Returns @scheme[#t] if @scheme[v] is a @scheme[paragraph], Returns @scheme[#t] if @scheme[v] is a @scheme[paragraph],
@scheme[table], @scheme[itemization], @scheme[blockquote], or @scheme[table], @scheme[itemization], @scheme[blockquote], or
@scheme[delayed-flow-element], @scheme[#f] otherwise. @scheme[delayed-block], @scheme[#f] otherwise.
} }
@ -569,9 +570,9 @@ Returns the width in characters of the given @tech{element}.
} }
@defproc[(flow-element-width (e flow-element?)) nonnegative-exact-integer?]{ @defproc[(block-width (e block?)) nonnegative-exact-integer?]{
Returns the width in characters of the given @tech{flow element}.} Returns the width in characters of the given @tech{block}.}
@defstruct[collect-info ([ht any/c] [ext-ht any/c] [parts any/c] @defstruct[collect-info ([ht any/c] [ext-ht any/c] [parts any/c]

View File

@ -41,7 +41,7 @@
strs))))) strs)))))
(define (as-flow e) (define (as-flow e)
(make-flow (list (if (flow-element? e) (make-flow (list (if (block? e)
e e
(make-paragraph (list e)))))) (make-paragraph (list e))))))