From fdbaeccd09afa0db9f7122c3b42c360d15d13b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 17 Feb 2020 11:11:04 +0100 Subject: Add some TODO's. --- module/output/html.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'module') diff --git a/module/output/html.scm b/module/output/html.scm index 39172318..fe877ca0 100644 --- a/module/output/html.scm +++ b/module/output/html.scm @@ -243,7 +243,9 @@ (class "hidelink")) ,d)))))) `(table (@ (class "small-calendar")) - (thead (tr ,@(map (lambda (d) `(td ,d)) '(MÅ TI ON TO FR LÖ SÖ)))) + ;; NOTE Sunday first since my code assumes that is the first day of the week. + ;; TODO make displayed first day of the week configurable. + (thead (tr ,@(map (lambda (d) `(td ,d)) '(SÖ MÅ TI ON TO FR LÖ)))) (tbody ,@(let recur ((lst (let* ((month (month date)) (month-len (days-in-month date)) -- cgit v1.2.3