guide edits
svn: r6342 original commit: b6391ebfdd0cd710b632714b61305edf401fa602
This commit is contained in:
parent
6612b39d5e
commit
497610de8d
|
@ -183,7 +183,7 @@
|
||||||
|
|
||||||
(define/override (render-table t part ht)
|
(define/override (render-table t part ht)
|
||||||
`((table ((cellspacing "0") ,@(case (table-style t)
|
`((table ((cellspacing "0") ,@(case (table-style t)
|
||||||
[(boxed) '((width "100%") (bgcolor "lightgray"))]
|
[(boxed) '((width "100%") (bgcolor "#E8E8FF"))]
|
||||||
[(centered) '((align "center"))]
|
[(centered) '((align "center"))]
|
||||||
[(at-right) '((align "right"))]
|
[(at-right) '((align "right"))]
|
||||||
[(at-left) '((align "left"))]
|
[(at-left) '((align "left"))]
|
||||||
|
|
|
@ -248,6 +248,18 @@
|
||||||
p-color)
|
p-color)
|
||||||
(set! src-col (+ src-col 1))
|
(set! src-col (+ src-col 1))
|
||||||
(hash-table-put! col-map src-col dest-col))]
|
(hash-table-put! col-map src-col dest-col))]
|
||||||
|
[(hash-table? (syntax-e c))
|
||||||
|
(advance c init-line!)
|
||||||
|
(let ([equal-table? (hash-table? (syntax-e c) 'equal)])
|
||||||
|
(out (if equal-table?
|
||||||
|
"#hash"
|
||||||
|
"#hasheq")
|
||||||
|
value-color)
|
||||||
|
(set! src-col (+ src-col 5 (if equal-table? 2 0)))
|
||||||
|
(hash-table-put! col-map src-col dest-col)
|
||||||
|
((loop init-line! +inf.0)
|
||||||
|
(syntax-ize (hash-table-map (syntax-e c) cons)
|
||||||
|
(syntax-column c))))]
|
||||||
[else
|
[else
|
||||||
(advance c init-line!)
|
(advance c init-line!)
|
||||||
(let-values ([(s it? sub?)
|
(let-values ([(s it? sub?)
|
||||||
|
|
|
@ -18,11 +18,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.refcontent {
|
.refcontent {
|
||||||
background-color: beige;
|
background-color: #F5F5DC;
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 10em;
|
width: 10em;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
|
border: 0.5em solid #F5F5DC;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,h2,h3,h4,h5,h6 {
|
h1,h2,h3,h4,h5,h6 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user