diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 00:01:14 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 00:01:14 +0200 |
commit | 656bca99b0b4c7130855cb01b30b944d4dcb4d12 (patch) | |
tree | b0fd1637dce7c3fea544f8bd3a95fbd169ea59a4 /src/html.scm | |
parent | 0f3edd5fb299e7d3d475a97eabb8998a61ad2709 (diff) |
src: atom and html: Export internals.0.0.3
Diffstat (limited to 'src/html.scm')
-rw-r--r-- | src/html.scm | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/src/html.scm b/src/html.scm index 18f568d..e957683 100644 --- a/src/html.scm +++ b/src/html.scm @@ -5,11 +5,41 @@ #:use-module (src mime-types) #:export (render person + person? + person-name + person-email + person-uri + post + post? + post-id + post-title + post-published + post-updated + post-authors + post-summary-html + post-content-html + post-categories + post-contributors + post-media + index + index? + index-title + index-short-description + index-long-description + index-uri + index-atom-feed-uri + index-author + index-posts + index-styles + index-scripts + media - css - js)) + media? + media-type + media-uri + media-path)) (define-record-type <index> (%make-index title short-description long-description uri atom-feed-uri author posts styles scripts) |