Overview
Comment: | Rename template-html.rkt → snippets-html.rkt |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
99fe3246191b799e8351d6e035db47eb |
User & Date: | joel on 2019-02-09 19:32:36 |
Other Links: | manifest | tags |
Context
2019-02-10
| ||
20:50 | Correct fetching of metadata from 'series' metas check-in: d0e6644b user: joel tags: trunk | |
2019-02-09
| ||
19:32 | Rename template-html.rkt → snippets-html.rkt check-in: 99fe3246 user: joel tags: trunk | |
2018-09-26
| ||
03:39 | Fix styles for note permlinks in individual article pages check-in: 8e848ec1 user: joel tags: trunk | |
Changes
Modified crystalize.rkt from [c317bddb] to [a4d1cb03].
︙ | ︙ | |||
33 34 35 36 37 38 39 | (require pollen/setup pollen/core pollen/template racket/string txexpr "sqlite-tools.rkt" | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | (require pollen/setup pollen/core pollen/template racket/string txexpr "sqlite-tools.rkt" "snippets-html.rkt" "dust.rkt") ;; ~~~ Provides ~~~ (provide spell-of-summoning! crystalize-article! article-plain-title) |
︙ | ︙ |
Modified pollen.rkt from [b6743712] to [b8fa2245].
︙ | ︙ | |||
28 29 30 31 32 33 34 | syntax/parse pollen/setup)) (require pollen/tag pollen/setup racket/function "tags-html.rkt" | | | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | syntax/parse pollen/setup)) (require pollen/tag pollen/setup racket/function "tags-html.rkt" "snippets-html.rkt" "crystalize.rkt") (provide (all-defined-out) (all-from-out "crystalize.rkt" "snippets-html.rkt")) (module setup racket/base (require syntax/modresolve) (provide (all-defined-out)) (define poly-targets '(html)) (define cache-watchlist (map resolve-module-path '("tags-html.rkt" "snippets-html.rkt" "dust.rkt" "crystalize.rkt")))) ;; Macro for defining tag functions that automatically branch based on the ;; current output format and the list of poly-targets in the setup module. ;; (define-syntax (poly-branch-tag stx) |
︙ | ︙ |
Name change from template-html.rkt to snippets-html.rkt.
︙ | ︙ |