From 137df8449f3212d9e32dc13c920373bcd7026c84 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 8 Sep 2019 18:03:38 +0300 Subject: Fix: display of news items list Pandoc, for some reason, injects some empty p elements and this hides them from display. --- local.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'local.css') diff --git a/local.css b/local.css index 9780c48..6847d26 100644 --- a/local.css +++ b/local.css @@ -43,7 +43,12 @@ li.L8 { list-style: decimal; } /* make list of news items look like a list */ + .newslist p { display: list-item; margin-left: 2em; } + +.newslist p:empty { + display: none; +} -- cgit v1.2.1