From 6636b894d16ca3e7bb4224676a0f6310d2517004 Mon Sep 17 00:00:00 2001 From: John MacFarlane <fiddlosopher@gmail.com> Date: Tue, 20 Dec 2011 11:36:51 -0800 Subject: [PATCH] Added a newline at end of footnotes ol. --- src/Text/Pandoc/Writers/HTML.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index f4975e6a6..64a1c993d 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -266,7 +266,7 @@ footnoteSection opts notes = then mempty else nl opts >> (container $ nl opts >> H.hr >> nl opts >> - H.ol (mconcat notes >> nl opts)) + H.ol (mconcat notes >> nl opts) >> nl opts) where container x = if writerHtml5 opts then H5.section ! A.class_ "footnotes" $ x else if writerSlideVariant opts /= NoSlides