diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-20 11:36:51 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-20 11:36:51 -0800 |
commit | 6636b894d16ca3e7bb4224676a0f6310d2517004 (patch) | |
tree | b8d5145616b54ee460e521263c7de7f4422473b7 /src | |
parent | 5ff7f81b85c8cdf3bed3bd78f60de5eddf6692df (diff) | |
download | pandoc-6636b894d16ca3e7bb4224676a0f6310d2517004.tar.gz |
Added a newline at end of footnotes ol.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 2 |
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 |