From dfca59943d2350ef8d5c1af66a0babbb488064ec Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 2 Nov 2012 21:23:02 -0700 Subject: EPUB: Don't use opf:role in EPUB3. --- src/Text/Pandoc/Writers/EPUB.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Text') diff --git a/src/Text/Pandoc/Writers/EPUB.hs b/src/Text/Pandoc/Writers/EPUB.hs index e9b13c979..f22d82924 100644 --- a/src/Text/Pandoc/Writers/EPUB.hs +++ b/src/Text/Pandoc/Writers/EPUB.hs @@ -343,7 +343,8 @@ metadataElement version metadataXML uuid lang title authors date currentTime mbC [ unode "dc:language" lang | not (elt `contains` "language") ] ++ [ unode "dc:identifier" ! [("id","BookId")] $ show uuid | not (elt `contains` "identifier") ] ++ - [ unode "dc:creator" ! [("opf:role","aut")] $ a | a <- authors ] ++ + [ unode "dc:creator" ! [("opf:role","aut") | version == EPUB2] + $ a | a <- authors ] ++ [ unode "dc:date" date | not (elt `contains` "date") ] ++ [ unode "meta" ! [("property", "dcterms:modified")] $ (showDateTimeISO8601 currentTime) | version == EPUB3 ] ++ -- cgit v1.2.3