diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-23 23:04:42 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-23 23:04:42 -0800 |
commit | cae409725fa0a71dd3f9ce2ea2185b050f5d1cb0 (patch) | |
tree | 166d79093cd3b2e1cdbc56fe6582a08375976a32 /src/Text/Pandoc/Writers | |
parent | f40eab3540cef01319a338cbf8c03072e6b1e481 (diff) | |
download | pandoc-cae409725fa0a71dd3f9ce2ea2185b050f5d1cb0.tar.gz |
Docx writer: Handle PDF images.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r-- | src/Text/Pandoc/Writers/Docx.hs | 1 |
1 files changed, 1 insertions, 0 deletions
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 |