| Portability | portable |
|---|---|
| Stability | alpha |
| Maintainer | John MacFarlane <jgm@berkeley.edu> |
| Safe Haskell | None |
Text.Pandoc.MediaBag
Description
Definition of a MediaBag object to hold binary resources, and an interface for interacting with it.
- data MediaBag
- lookupMedia :: FilePath -> MediaBag -> Maybe (String, ByteString)
- insertMedia :: FilePath -> Maybe String -> ByteString -> MediaBag -> MediaBag
- mediaDirectory :: MediaBag -> [(String, String, Int)]
- extractMediaBag :: Bool -> FilePath -> MediaBag -> IO ()
Documentation
lookupMedia :: FilePath -> MediaBag -> Maybe (String, ByteString)Source
Lookup a media item in a MediaBag, returning mime type and contents.
Arguments
| :: FilePath | relative path and canonical name of resource |
| -> Maybe String | mime type (Nothing = determine from extension) |
| -> ByteString | contents of resource |
| -> MediaBag | |
| -> MediaBag |
Insert a media item into a MediaBag, replacing any existing value with the same name.