doc work, and also generalize normalize-definition to work with opts and kws
svn: r6665 original commit: 2e536dc70e5f2bbf82dc740eb9b0e5540178ce1f
This commit is contained in:
parent
8d484595ef
commit
028e28c5e5
|
@ -34,6 +34,14 @@
|
||||||
(substring s 0 (sub1 (string-length s))))
|
(substring s 0 (sub1 (string-length s))))
|
||||||
sep)))
|
sep)))
|
||||||
|
|
||||||
|
(define/public (strip-aux content)
|
||||||
|
(cond
|
||||||
|
[(null? content) null]
|
||||||
|
[(aux-element? (car content))
|
||||||
|
(strip-aux (cdr content))]
|
||||||
|
[else (cons (car content)
|
||||||
|
(strip-aux (cdr content)))]))
|
||||||
|
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
;; global-info collection
|
;; global-info collection
|
||||||
|
|
||||||
|
@ -218,7 +226,7 @@
|
||||||
(null? (element-content i)))
|
(null? (element-content i)))
|
||||||
(let ([v (lookup part ht (link-element-tag i))])
|
(let ([v (lookup part ht (link-element-tag i))])
|
||||||
(if v
|
(if v
|
||||||
(render-content (car v) part ht)
|
(render-content (strip-aux (car v)) part ht)
|
||||||
(render-content (list "[missing]") part ht)))]
|
(render-content (list "[missing]") part ht)))]
|
||||||
[(element? i)
|
[(element? i)
|
||||||
(render-content (element-content i) part ht)]
|
(render-content (element-content i) part ht)]
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
|
|
||||||
(provide hspace
|
(provide hspace
|
||||||
elem
|
elem aux-elem
|
||||||
italic bold
|
italic bold
|
||||||
tt span-class
|
tt span-class
|
||||||
subscript superscript)
|
subscript superscript)
|
||||||
|
@ -80,6 +80,9 @@
|
||||||
(define/kw (elem #:body str)
|
(define/kw (elem #:body str)
|
||||||
(make-element #f (decode-content str)))
|
(make-element #f (decode-content str)))
|
||||||
|
|
||||||
|
(define/kw (aux-elem #:body s)
|
||||||
|
(make-aux-element #f (decode-content s)))
|
||||||
|
|
||||||
(define/kw (italic #:body str)
|
(define/kw (italic #:body str)
|
||||||
(make-element 'italic (decode-content str)))
|
(make-element 'italic (decode-content str)))
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
install-file
|
install-file
|
||||||
get-dest-directory
|
get-dest-directory
|
||||||
format-number
|
format-number
|
||||||
|
strip-aux
|
||||||
lookup)
|
lookup)
|
||||||
|
|
||||||
(define/override (get-suffix) #".html")
|
(define/override (get-suffix) #".html")
|
||||||
|
@ -71,7 +72,7 @@
|
||||||
(content "text-html; charset=utf-8")))
|
(content "text-html; charset=utf-8")))
|
||||||
,@(let ([c (part-title-content d)])
|
,@(let ([c (part-title-content d)])
|
||||||
(if c
|
(if c
|
||||||
`((title ,@(format-number number '(nbsp)) ,@(render-content c d ht)))
|
`((title ,@(format-number number '(nbsp)) ,(content->string c this d ht)))
|
||||||
null))
|
null))
|
||||||
(link ((rel "stylesheet")
|
(link ((rel "stylesheet")
|
||||||
(type "text/css")
|
(type "text/css")
|
||||||
|
@ -156,7 +157,7 @@
|
||||||
`((class ,(element-style e)))
|
`((class ,(element-style e)))
|
||||||
null))
|
null))
|
||||||
,@(if (null? (element-content e))
|
,@(if (null? (element-content e))
|
||||||
(render-content (cadr dest) part ht)
|
(render-content (strip-aux (cadr dest)) part ht)
|
||||||
(render-content (element-content e) part ht))))
|
(render-content (element-content e) part ht))))
|
||||||
(begin (fprintf (current-error-port) "Undefined link: ~s~n" (link-element-tag e)) ; XXX Add source info
|
(begin (fprintf (current-error-port) "Undefined link: ~s~n" (link-element-tag e)) ; XXX Add source info
|
||||||
`((font ((class "badlink"))
|
`((font ((class "badlink"))
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
[(index-element element) ([tag tag?]
|
[(index-element element) ([tag tag?]
|
||||||
[plain-seq (listof string?)]
|
[plain-seq (listof string?)]
|
||||||
[entry-seq list?])]
|
[entry-seq list?])]
|
||||||
|
[(aux-element element) ()]
|
||||||
;; specific renders support other elements, especially strings
|
;; specific renders support other elements, especially strings
|
||||||
|
|
||||||
[collected-info ([number (listof (or/c false/c integer?))]
|
[collected-info ([number (listof (or/c false/c integer?))]
|
||||||
|
@ -132,22 +133,35 @@
|
||||||
|
|
||||||
(provide content->string)
|
(provide content->string)
|
||||||
|
|
||||||
(define (content->string c)
|
(define content->string
|
||||||
(apply string-append
|
(case-lambda
|
||||||
(map (lambda (e)
|
[(c) (c->s c element->string)]
|
||||||
(element->string e))
|
[(c renderer sec ht) (c->s c (lambda (e)
|
||||||
c)))
|
(element->string e renderer sec ht)))]))
|
||||||
|
|
||||||
(define (element->string c)
|
(define (c->s c do-elem)
|
||||||
(cond
|
(apply string-append
|
||||||
[(element? c) (content->string (element-content c))]
|
(map do-elem c)))
|
||||||
[(string? c) c]
|
|
||||||
[else (case c
|
(define element->string
|
||||||
[(ndash) "--"]
|
(case-lambda
|
||||||
[(ldquo rdquo) "\""]
|
[(c)
|
||||||
[(rsquo) "'"]
|
(cond
|
||||||
[(rarr) "->"]
|
[(element? c) (content->string (element-content c))]
|
||||||
[else (format "~s" c)])]))
|
[(string? c) c]
|
||||||
|
[else (case c
|
||||||
|
[(ndash) "--"]
|
||||||
|
[(ldquo rdquo) "\""]
|
||||||
|
[(rsquo) "'"]
|
||||||
|
[(rarr) "->"]
|
||||||
|
[else (format "~s" c)])])]
|
||||||
|
[(c renderer sec ht)
|
||||||
|
(cond
|
||||||
|
[(element? c) (content->string (element-content c) renderer sec ht)]
|
||||||
|
[(delayed-element? c)
|
||||||
|
(content->string (force-delayed-element c renderer sec ht)
|
||||||
|
renderer sec ht)]
|
||||||
|
[else (element->string c)])]))
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -93,6 +93,9 @@ have Scribble's @file{scheme.ss} and @file{manual.ss}).
|
||||||
@scheme[decode-content], and wraps the result as an element with
|
@scheme[decode-content], and wraps the result as an element with
|
||||||
style @scheme[#f].}
|
style @scheme[#f].}
|
||||||
|
|
||||||
|
@def-elem-proc[aux-elem]{Like @scheme[elem], but creates an
|
||||||
|
@scheme[aux-element].}
|
||||||
|
|
||||||
@def-style-proc[italic]
|
@def-style-proc[italic]
|
||||||
@def-style-proc[bold]
|
@def-style-proc[bold]
|
||||||
@def-style-proc[tt]
|
@def-style-proc[tt]
|
||||||
|
|
|
@ -293,10 +293,11 @@ as a file name (e.g., in typewriter font and in in quotes).}
|
||||||
as a command line (e.g., in typewriter font).}
|
as a command line (e.g., in typewriter font).}
|
||||||
|
|
||||||
@; ------------------------------------------------------------------------
|
@; ------------------------------------------------------------------------
|
||||||
@section{Section Links}
|
@section[#:tag "scribble:manual:section-links"]{Section Links}
|
||||||
|
|
||||||
@defproc[(secref [tag string?]) element?]{Inserts the hyperlinked
|
@defproc[(secref [tag string?]) element?]{Inserts the hyperlinked
|
||||||
title of the section tagged @scheme[tag].}
|
title of the section tagged @scheme[tag], but @scheme{aux-element}
|
||||||
|
items in the title content are omitted in the hyperlink label.}
|
||||||
|
|
||||||
@defproc[(seclink [tag string?] [pre-content any/c] ...) element?]{The content from
|
@defproc[(seclink [tag string?] [pre-content any/c] ...) element?]{The content from
|
||||||
@scheme[pre-content] is hyperlinked to the section tagged @scheme[tag].}
|
@scheme[pre-content] is hyperlinked to the section tagged @scheme[tag].}
|
||||||
|
@ -305,7 +306,6 @@ title of the section tagged @scheme[tag].}
|
||||||
@scheme[pre-content] is hyperlinked to the definition of @scheme[id].}
|
@scheme[pre-content] is hyperlinked to the definition of @scheme[id].}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@; ------------------------------------------------------------------------
|
@; ------------------------------------------------------------------------
|
||||||
@section{Indexing}
|
@section{Indexing}
|
||||||
|
|
||||||
|
|
|
@ -194,6 +194,14 @@ section, and the last argument correspond to global information
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@defstruct[(aux-element element) ()]{
|
||||||
|
|
||||||
|
Instances of this structure type are intended for use in titles, where
|
||||||
|
the auxiliary part of the title can be omitted in hyperlinks. See, for
|
||||||
|
example, @scheme[secref].
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@defstruct[delayed-element ([render (any/c part? any/c . -> . list?)])]{
|
@defstruct[delayed-element ([render (any/c part? any/c . -> . list?)])]{
|
||||||
|
|
||||||
The @scheme[render] procedure's arguments are the same as for
|
The @scheme[render] procedure's arguments are the same as for
|
||||||
|
|
Loading…
Reference in New Issue
Block a user