scribble HTML rendering merges style
attributes
This change fixes using `color-property` and `background-color-property` at the same time, for example. original commit: d2e1396b136ecb4917233106ba805823207c6592
This commit is contained in:
parent
d612610615
commit
644ea52438
|
@ -450,6 +450,16 @@ The recognized @tech{style properties} are as follows:
|
||||||
content for the @tt{<head>} tag when the part corresponds to
|
content for the @tt{<head>} tag when the part corresponds to
|
||||||
its own HTML page.}
|
its own HTML page.}
|
||||||
|
|
||||||
|
@item{@racket[color-property] structure --- For HTML, applies a color
|
||||||
|
to the part title.}
|
||||||
|
|
||||||
|
@item{@racket[background-color-property] structure --- For HTML,
|
||||||
|
Applies a color to the background of the part title.}
|
||||||
|
|
||||||
|
@item{@racket[hover-property] structure --- For HTML, adds a text
|
||||||
|
label to the title to be shown when the mouse hovers over
|
||||||
|
it.}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
The @racket[to-collect] field contains @techlink{content} that is
|
The @racket[to-collect] field contains @techlink{content} that is
|
||||||
|
@ -808,8 +818,8 @@ The following @tech{style properties} are currently recognized:
|
||||||
@item{@racket[color-property] structure --- Applies a color to the
|
@item{@racket[color-property] structure --- Applies a color to the
|
||||||
text of @racket[content].}
|
text of @racket[content].}
|
||||||
|
|
||||||
@item{@racket[background-color-property] structure --- Applies a color to the
|
@item{@racket[background-color-property] structure --- Applies a
|
||||||
background of @racket[content].}
|
color to the background of @racket[content].}
|
||||||
|
|
||||||
@item{@racket[alt-tag] structure --- Generates the given HTML tag
|
@item{@racket[alt-tag] structure --- Generates the given HTML tag
|
||||||
instead of the default one (@tt{<span>}, @tt{b}, @|etc|).}
|
instead of the default one (@tt{<span>}, @tt{b}, @|etc|).}
|
||||||
|
@ -1068,7 +1078,11 @@ renderer, but at the recognized set includes at least
|
||||||
@racket["white"], @racket["black"], @racket["red"], @racket["green"],
|
@racket["white"], @racket["black"], @racket["red"], @racket["green"],
|
||||||
@racket["blue"], @racket["cyan"], @racket["magenta"], and
|
@racket["blue"], @racket["cyan"], @racket["magenta"], and
|
||||||
@racket["yellow"]. When @racket[color] is a list of bytes, the values
|
@racket["yellow"]. When @racket[color] is a list of bytes, the values
|
||||||
are used as RGB levels.}
|
are used as RGB levels.
|
||||||
|
|
||||||
|
When rendering to HTML, a @racket[color-property] is also recognized
|
||||||
|
for a @tech{block} or @racket[part] (and used for the title in the
|
||||||
|
latter case).}
|
||||||
|
|
||||||
|
|
||||||
@defstruct[background-color-property ([color (or/c string? (list/c byte? byte? byte?))])]{
|
@defstruct[background-color-property ([color (or/c string? (list/c byte? byte? byte?))])]{
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
Version 1.1
|
Version 1.1
|
||||||
Change `verbatim' to support non-string arguments
|
Change `verbatim' to support non-string arguments
|
||||||
|
Add `--html-tree' option to for rendering to multi-page HTML
|
||||||
|
with nested directories for nested parts
|
||||||
|
For HTML rendering, merge generated `style' attributes within
|
||||||
|
a single tag
|
||||||
|
|
||||||
Older versions
|
Older versions
|
||||||
See the "Racket core" release notes for a history of changes before
|
See the "Racket core" release notes for a history of changes before
|
||||||
|
|
|
@ -141,8 +141,21 @@
|
||||||
(if (< v 16) (string-append "0" s) s)))
|
(if (< v 16) (string-append "0" s) s)))
|
||||||
c))))
|
c))))
|
||||||
|
|
||||||
|
(define (merge-styles s l)
|
||||||
|
;; merge multiple 'style attributes into one
|
||||||
|
(cond
|
||||||
|
[(null? l) (if s
|
||||||
|
(list (list 'style s))
|
||||||
|
null)]
|
||||||
|
[(eq? 'style (caar l))
|
||||||
|
(merge-styles (if s (string-append s "; " (cadar l)) (cadar l))
|
||||||
|
(cdr l))]
|
||||||
|
[else (cons (car l) (merge-styles s (cdr l)))]))
|
||||||
|
|
||||||
(define (style->attribs style [extras null])
|
(define (style->attribs style [extras null])
|
||||||
(let ([a (apply
|
(let ([a (merge-styles
|
||||||
|
#f
|
||||||
|
(apply
|
||||||
append
|
append
|
||||||
extras
|
extras
|
||||||
(map (lambda (v)
|
(map (lambda (v)
|
||||||
|
@ -156,7 +169,7 @@
|
||||||
[(hover-property? v)
|
[(hover-property? v)
|
||||||
`((title ,(hover-property-text v)))]
|
`((title ,(hover-property-text v)))]
|
||||||
[else null]))
|
[else null]))
|
||||||
(style-properties style)))])
|
(style-properties style))))])
|
||||||
(let ([name (style-name style)])
|
(let ([name (style-name style)])
|
||||||
(if (string? name)
|
(if (string? name)
|
||||||
(if (assq 'class a)
|
(if (assq 'class a)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user