S5/slidy writer: Make footnotes appear on separate slide at end.
This commit is contained in:
parent
6eb6a99013
commit
3270c838b5
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue