summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/HTML.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-07-27 09:18:51 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-07-27 09:18:51 -0700
commitb98219773b45ed43268204e59c494f45b4455d2c (patch)
tree8b03fdf2ba378064439f3132fb8c7d541930d8b4 /src/Text/Pandoc/Writers/HTML.hs
parent00dc1e715e6317ab499c864137bb2a6bf7a75364 (diff)
Replaced writerStrict with writerExtensions in WriterOptions.
Still have not implemented individual tests for all the extensions in the markdown writer.
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 a5f85921c..78361dafc 100644
--- a/src/Text/Pandoc/Writers/HTML.hs
+++ b/src/Text/Pandoc/Writers/HTML.hs
@@ -273,7 +273,7 @@ elementToHtml slideLevel opts (Sec level num id' title' elements) = do
-- title slides have no content of their own
then filter isSec elements
else elements
- let header'' = if (writerStrictMarkdown opts || writerSectionDivs opts ||
+ let header'' = if (writerSectionDivs opts ||
writerSlideVariant opts == S5Slides || slide)
then header'
else header' ! prefixedId opts id'