diff options
author | Andrew Pritchard <andrewjpritchard@gmail.com> | 2018-02-19 03:12:58 +0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-02-18 11:12:58 -0800 |
commit | bb7681a85af76b2b85b263d593f560caf5428def (patch) | |
tree | c8e8758b5261750e7180709090ac83661b360a43 /src/Text/Pandoc/Writers/Powerpoint | |
parent | 377640402f32e8189fc88e54515c397ce48cc916 (diff) | |
download | pandoc-bb7681a85af76b2b85b263d593f560caf5428def.tar.gz |
EMF Image size support (#4375)
Diffstat (limited to 'src/Text/Pandoc/Writers/Powerpoint')
-rw-r--r-- | src/Text/Pandoc/Writers/Powerpoint/Output.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/Powerpoint/Output.hs b/src/Text/Pandoc/Writers/Powerpoint/Output.hs index d30819d47..b41696043 100644 --- a/src/Text/Pandoc/Writers/Powerpoint/Output.hs +++ b/src/Text/Pandoc/Writers/Powerpoint/Output.hs @@ -475,6 +475,7 @@ registerMedia fp caption = do Just Pdf -> Just ".pdf" Just Eps -> Just ".eps" Just Svg -> Just ".svg" + Just Emf -> Just ".emf" Nothing -> Nothing let newGlobalId = case M.lookup fp globalIds of |