aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Text/Pandoc/Writers/EPUB.hs8
m---------templates10
2 files changed, 10 insertions, 8 deletions
diff --git a/src/Text/Pandoc/Writers/EPUB.hs b/src/Text/Pandoc/Writers/EPUB.hs
index 63a17f608..5d557824f 100644
--- a/src/Text/Pandoc/Writers/EPUB.hs
+++ b/src/Text/Pandoc/Writers/EPUB.hs
@@ -72,13 +72,14 @@ writeEPUB :: EPUBVersion
-> Pandoc -- ^ Document to convert
-> IO B.ByteString
writeEPUB version opts doc@(Pandoc meta _) = do
+ let epub3 = version == EPUB3
epochtime <- floor `fmap` getPOSIXTime
let mkEntry path content = toEntry path epochtime content
let opts' = opts{ writerEmailObfuscation = NoObfuscation
, writerStandalone = True
, writerWrapText = False }
let sourceDir = writerSourceDirectory opts'
- let vars = writerVariables opts'
+ let vars = ("epub3", if epub3 then "true" else "false"):writerVariables opts'
let mbCoverImage = lookup "epub-cover-image" vars
titlePageTemplate <- readDataFile (writerUserDataDir opts)
@@ -106,7 +107,8 @@ writeEPUB version opts doc@(Pandoc meta _) = do
-- title page
let tpContent = fromStringLazy $ writeHtmlString
- opts'{writerTemplate = titlePageTemplate}
+ opts'{writerTemplate = titlePageTemplate,
+ writerVariables = vars}
(Pandoc meta [])
let tpEntry = mkEntry "title_page.xhtml" tpContent
@@ -140,7 +142,7 @@ writeEPUB version opts doc@(Pandoc meta _) = do
let chapToEntry :: Int -> [Tag String] -> Entry
chapToEntry num ts = mkEntry (showChapter num)
$ fromStringLazy
- $ renderTemplate [("body",renderTags ts), ("pagetitle",show num)]
+ $ renderTemplate (("body",renderTags ts):("pagetitle",show num):vars)
$ pageTemplate
let chapterEntries = zipWith chapToEntry [1..] chunks
diff --git a/templates b/templates
-Subproject 2e0841bf8e4aeb7710fe1d8519f69c224354a1f
+Subproject 8aad14418920ab350ddd84762dc5313673c6975