From 6fa758a07de91bdf2ec2fafb5bd757f9c6a114f5 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Wed, 4 Oct 2023 17:37:32 +0200 Subject: as: *: add string/ISO->date to build context --- src/as/atom.scm | 2 ++ src/as/html.scm | 2 ++ src/as/media-uploader.scm | 2 ++ 3 files changed, 6 insertions(+) (limited to 'src') diff --git a/src/as/atom.scm b/src/as/atom.scm index c1a8424..2f88b7e 100644 --- a/src/as/atom.scm +++ b/src/as/atom.scm @@ -1,5 +1,7 @@ (define-module (src as atom) #:use-module ((src atom) #:prefix atom:) + #:use-module (src dates) + #:re-export (string/ISO->date) #:export (main post person diff --git a/src/as/html.scm b/src/as/html.scm index 7ea3095..6a612dc 100644 --- a/src/as/html.scm +++ b/src/as/html.scm @@ -1,5 +1,7 @@ (define-module (src as html) + #:use-module (src dates) #:use-module ((src html) #:prefix html:) + #:re-export (string/ISO->date) #:export (main post person diff --git a/src/as/media-uploader.scm b/src/as/media-uploader.scm index 2991b52..3b21a8c 100644 --- a/src/as/media-uploader.scm +++ b/src/as/media-uploader.scm @@ -1,5 +1,7 @@ (define-module (src as media-uploader) + #:use-module (src dates) #:use-module (src media-uploader) + #:re-export (string/ISO->date) #:export (main post person -- cgit v1.2.3