S5/slidy writer: Make footnotes appear on separate slide at end.

This commit is contained in:
John MacFarlane 2011-11-29 13:36:50 -08:00
parent 6eb6a99013
commit 3270c838b5

View file

@ -259,7 +259,9 @@ footnoteSection opts notes =
(olist << (notes ++ [nl opts])) +++ nl opts)
where container = if writerHtml5 opts
then tag "section" ! [theclass "footnotes"]
else thediv ! [theclass "footnotes"]
else if writerSlideVariant opts /= NoSlides
then thediv ! [theclass "footnotes slide"]
else thediv ! [theclass "footnotes"]
-- | Parse a mailto link; return Just (name, domain) or Nothing.
parseMailto :: String -> Maybe (String, String)