From 01b55b7256d488cf75d69353e06da873fe425648 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 21 Dec 2023 17:44:40 -0500 Subject: [PATCH] Make paragraphs under footnote definitions display inline. This seems to be the behavior of the upstream org html exporter. --- default_environment/stylesheet/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/default_environment/stylesheet/main.css b/default_environment/stylesheet/main.css index 383c8ee..4db8466 100644 --- a/default_environment/stylesheet/main.css +++ b/default_environment/stylesheet/main.css @@ -153,6 +153,10 @@ body { } .definition { display: inline; + + > p { + display: inline; + } } } }