From cae409725fa0a71dd3f9ce2ea2185b050f5d1cb0 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 23 Feb 2013 23:04:42 -0800 Subject: [PATCH] Docx writer: Handle PDF images. --- src/Text/Pandoc/Writers/Docx.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs index 9028acfde..694d2d639 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -680,6 +680,7 @@ imgPath ident img = "media/" ++ ident ++ Just Png -> ".png" Just Jpeg -> ".jpeg" Just Gif -> ".gif" + Just Pdf -> ".pdf" Nothing -> "" br :: Element