From 0f6e22bf6abaf3dfc1d129355961dc7ca6ff396e Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Mon, 12 Sep 2022 16:43:16 +0200 Subject: [PATCH] Add a newline before the table in Markdown rendering --- sncf.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sncf.ss b/sncf.ss index d90090c..61d692c 100755 --- a/sncf.ss +++ b/sncf.ss @@ -57,10 +57,10 @@ (lambda () (display (format "Prochains départs de **~a** " station-name)) (displayln (if datetime - (parse-markup (format "le ~a à ~a :" + (parse-markup (format "le ~a à ~a :\n" (date->string datetime "~a ~d ~b ~Y") (date->string datetime "~H:~M"))) - ":")) + ":\n")) (display-departures-table departures style: 'markdown) (display-disruptions disruptions style: 'markdown))))) (post-to-mattermost mattermost-url tab-str-md channel: mattermost-channel)))))