summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/HTML.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2011-12-20 11:36:51 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2011-12-20 11:36:51 -0800
commit6636b894d16ca3e7bb4224676a0f6310d2517004 (patch)
treeb8d5145616b54ee460e521263c7de7f4422473b7 /src/Text/Pandoc/Writers/HTML.hs
parent5ff7f81b85c8cdf3bed3bd78f60de5eddf6692df (diff)
Added a newline at end of footnotes ol.
Diffstat (limited to 'src/Text/Pandoc/Writers/HTML.hs')
-rw-r--r--src/Text/Pandoc/Writers/HTML.hs2
1 files changed, 1 insertions, 1 deletions
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