aboutsummaryrefslogtreecommitdiff
path: root/module/output
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-12-30 02:06:29 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-12-30 02:08:19 +0100
commit59465c70114bc55fde2401032d21c10151e0cf98 (patch)
tree7dedf91902ef19a6567aa64feae473ef2cff2417 /module/output
parentHTML day highlight now only in current month. (diff)
downloadcalp-59465c70114bc55fde2401032d21c10151e0cf98.tar.gz
calp-59465c70114bc55fde2401032d21c10151e0cf98.tar.xz
Whitespace fixup.
Diffstat (limited to 'module/output')
-rw-r--r--module/output/html.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index fc4199ee..4cc39be6 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -259,10 +259,10 @@
(map (lambda (p) `(td (@ ,@(assq-merge '((class " cur ")) (cdar p)))
,@(cdr p)))
(map (lambda (d) `((@ (class ,(when (date=? today (set (date-day date) d))
- "today")))
- (a (@ (href "#" ,(date->string date "~Y-~m-")
- ,(pad0 d))
- (class "hidelink")) ,d)))
+ "today")))
+ (a (@ (href "#" ,(date->string date "~Y-~m-")
+ ,(pad0 d))
+ (class "hidelink")) ,d)))
(iota month-len 1)))
(map (td '(class "next") (month+ date))
(iota (modulo (- (* 7 5) month-len month-start) 7) 1))))))