diff options
Diffstat (limited to 'src/Text/Pandoc')
| -rw-r--r-- | src/Text/Pandoc/SelfContained.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Text/Pandoc/SelfContained.hs b/src/Text/Pandoc/SelfContained.hs index 2aab015c2..d4970dc2b 100644 --- a/src/Text/Pandoc/SelfContained.hs +++ b/src/Text/Pandoc/SelfContained.hs @@ -250,7 +250,7 @@ getData _ src@('d':'a':'t':'a':':':_) = return $ Left src-- already data: uri  getData mimetype src = do    let ext = map toLower $ takeExtension src    (raw, respMime) <- fetchItem src -  let raw' = if ext == ".gz" +  let raw' = if ext `elem` [".gz", ".svgz"]                  then B.concat $ L.toChunks $ Gzip.decompress $ L.fromChunks [raw]                  else raw    mime <- case (mimetype, respMime) of | 
