diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-10 00:06:36 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-10 00:06:36 +0200 |
commit | ecb6938ba4b1ac2faf76e420ffa221a7d452e0a8 (patch) | |
tree | a0d7392ef0929023c69f0bed0411ad7b370f55d1 /src/html.scm | |
parent | 8596dca388e94ddd4a7008e972f864e68f1de99a (diff) |
atom, html: rename internals to %*
Diffstat (limited to 'src/html.scm')
-rw-r--r-- | src/html.scm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/html.scm b/src/html.scm index a6bdd13..7099318 100644 --- a/src/html.scm +++ b/src/html.scm @@ -12,7 +12,7 @@ js)) (define-record-type <index> - (make-index title short-description long-description uri atom-feed-uri author posts styles scripts) + (%make-index title short-description long-description uri atom-feed-uri author posts styles scripts) index? (title index-title) (short-description index-short-description) @@ -25,16 +25,16 @@ (scripts index-scripts)) (define-record-type <post> - (make-post id - title - published - updated - authors - summary-html - content-html - categories - contributors - media) + (%make-post id + title + published + updated + authors + summary-html + content-html + categories + contributors + media) post? (id post-id) (title post-title) @@ -48,14 +48,14 @@ (media post-media)) (define-record-type <media> - (make-media type uri path) + (%make-media type uri path) media? (type media-type) (uri media-uri) (path media-path)) (define-record-type <person> - (make-person name email uri) + (%make-person name email uri) person? (name person-name) (email person-email) @@ -72,7 +72,7 @@ (styles '()) (scripts '()) #:allow-other-keys) - (make-index + (%make-index title short-description long-description @@ -100,9 +100,9 @@ (string-map (lambda (c) (if (char-set-contains? char-set:letter c) c #\-)) title)) - (make-post (or id (id-from-title title)) - title - published + (%make-post (or id (id-from-title title)) + title + published (find-newest (list published updated)) authors summary-html @@ -118,14 +118,14 @@ (type (assoc-ref mime-types extension))) (if (string? type) type (throw "Unknown mime-type")))) - (make-media (type path) - uri - path)) + (%make-media (type path) + uri + path)) (define* (person name #:key (email "") (uri "") #:allow-other-keys) - (make-person name email uri)) + (%make-person name email uri)) ; Rendering (define (render-author author) |