Overview
| Comment: | Make ◊index tag syntax more concise |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
cffdbbee275378bfac9aa26c4e877dff |
| User & Date: | joel on 2019-05-27 21:50:39 |
| Other Links: | manifest | tags |
Context
|
2019-06-01
| ||
| 20:30 | Support sub-entries in keyword index. Finishes [5daecde7] check-in: d7ebf012 user: joel tags: trunk | |
|
2019-05-27
| ||
| 21:50 | Make ◊index tag syntax more concise check-in: cffdbbee user: joel tags: trunk | |
| 20:55 | Implement figure tags check-in: e5a492af user: joel tags: trunk | |
Changes
Modified code-docs/pollen.scrbl from [308e939b] to [6a861144].
| ︙ | |||
185 186 187 188 189 190 191 | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | - + - - - + + + - - + + |
◊dialogue{
◊say["Tavi"]{You also write fiction, or you used to. Do you still?}
◊say["Lorde"]{The thing is, when I write now, it comes out as songs.}
}
}|
|
| ︙ |
Modified pollen.rkt from [8f82b23e] to [b942e8fa].
| ︙ | |||
92 93 94 95 96 97 98 | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | - + | (poly-branch-tag smallcaps) (poly-branch-tag center) (poly-branch-tag section) (poly-branch-tag subsection) (poly-branch-tag code) (poly-branch-tag dialogue) (poly-branch-tag say) |
| ︙ |
Modified tags-html.rkt from [8147764e] to [0c6322fb].
| ︙ | |||
100 101 102 103 104 105 106 | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | - - - - + + + + + - + |
(define (html-blockcode attrs elems)
(define file (or (assoc 'filename attrs) ""))
(define codeblock `(pre [[class "code"]] (code ,@elems)))
(cond [(string>? file "") `(@ (div [[class "listing-filename"]] 128196 " " ,file) ,codeblock)]
[else codeblock]))
|
| ︙ |