diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-09-30 21:58:35 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-09-30 21:58:35 -0700 |
commit | 73c47a44d86f5075e3635e90574de12ac5f0b2eb (patch) | |
tree | a91cd0e30727c2e0c8b3cec4c7092abea7732712 /doc | |
parent | 896c288625a8c48e290fe86e90b65109bd4fce9f (diff) | |
download | pandoc-73c47a44d86f5075e3635e90574de12ac5f0b2eb.tar.gz |
Lua: make lua.mediabag.fetch return filename and mime type.
This is necessary because you may need to insert the filename
into an image or link element.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua-filters.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md index d17c44adf..e1007f452 100644 --- a/doc/lua-filters.md +++ b/doc/lua-filters.md @@ -1133,7 +1133,9 @@ storage. The "media bag" is used when pandoc is called with the [`fetch (source, base_url)`]{#mediabag-fetch} : Fetches the given source and inserts it into the media bag - using a SHA1 hash of the content as filename. + using a SHA1 hash of the content as filename. Returns two + values: the filename (based on SHA1 hash) and the mime + type (or an empty string). Usage: |