aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 14848335..d55e40f0 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -231,7 +231,8 @@
(onclick "toggle_child_popup(this)"))))
,(when (prop ev 'RRULE)
`(span (@ (class "repeating")) "↺"))
- ,((get-config 'summary-filter) ev (prop ev 'SUMMARY))
+ (span (@ (class "summary"))
+ ,((get-config 'summary-filter) ev (prop ev 'SUMMARY)))
,(when (prop ev 'LOCATION)
`(span (@ (class "location"))
,(string-map (lambda (c) (if (char=? c #\,) #\newline c))
@@ -423,7 +424,7 @@
(h3 ,(fmt-header
(when (prop ev 'RRULE)
`(span (@ (class "repeating")) "↺"))
- (prop ev 'SUMMARY)))
+ `(span (@ (class "summary")) ,(prop ev 'SUMMARY))))
(div
,(call-with-values (lambda () (fmt-time-span ev))
(case-lambda [(start) `(div ,start)]