diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-14 11:46:41 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-14 11:46:41 -0800 |
commit | 0d1740ea08c8e802d17687f670a6dc26d51ca427 (patch) | |
tree | 304bbde4e9c7f14c455d97cbe287fe6f1e2ec93a | |
parent | 51365b3b363ce7c7a39a3a124d236eb1e3857889 (diff) | |
download | pandoc-0d1740ea08c8e802d17687f670a6dc26d51ca427.tar.gz |
Export ImageType(..) from ImageSize.
-rw-r--r-- | src/Text/Pandoc/ImageSize.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/ImageSize.hs b/src/Text/Pandoc/ImageSize.hs index 48731acf8..4a7a21dd3 100644 --- a/src/Text/Pandoc/ImageSize.hs +++ b/src/Text/Pandoc/ImageSize.hs @@ -31,7 +31,7 @@ Functions for determining the size of a PNG, JPEG, or GIF image. Algorithms borrowwed from wwwis.pl (c) 2005 Alex K, released under the GPL. -} -module Text.Pandoc.ImageSize ( imageType, imageSize, readImageSize ) where +module Text.Pandoc.ImageSize ( ImageType(..), imageType, imageSize, readImageSize ) where import Data.ByteString.Lazy (ByteString, unpack) import qualified Data.ByteString.Lazy.Char8 as B import Control.Monad |