From c331b83ebf55e9a36492c29142443fba43c08d54 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 29 Nov 2019 18:41:19 +0200 Subject: Fix: rendering of news item list, when using pandoc plugin --- local.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/local.css b/local.css index 9780c48..ba5431a 100644 --- a/local.css +++ b/local.css @@ -43,7 +43,14 @@ li.L8 { list-style: decimal; } /* make list of news items look like a list */ + .newslist p { display: list-item; margin-left: 2em; } + +/* with pandoc plugin we get a weird empty p as first and last element + under the news item list; hide them */ +.newslist p:first-child, .newslist p:last-child { + display: none; +} -- cgit v1.2.1