diff options
| author | John MacFarlane <[email protected]> | 2024-06-30 11:32:16 -0600 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2024-07-01 08:56:17 -0600 |
| commit | 3fe1f0fe20226144d992e1be2a378aa7f69d884a (patch) | |
| tree | 354d8bc773f39d558c4fdcb83b56a5e2b69429c1 /src/Text/Pandoc/App/CommandLineOptions.hs | |
| parent | 51f3da649c7832f6b92b66dbb58a77f5d6d28360 (diff) | |
Add option to link rather than embedding images in ODT.link-images
New cli option: `--link-images`. This causes images to be linked
rather than embedded in ODT.
New field in WriterOptions: `writerLinkImages` [API change].
New field in Opt: `optLinkImages` [API change].
Closes #9815.
Diffstat (limited to 'src/Text/Pandoc/App/CommandLineOptions.hs')
| -rw-r--r-- | src/Text/Pandoc/App/CommandLineOptions.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Text/Pandoc/App/CommandLineOptions.hs b/src/Text/Pandoc/App/CommandLineOptions.hs index c3abe1ba1..c50ec6208 100644 --- a/src/Text/Pandoc/App/CommandLineOptions.hs +++ b/src/Text/Pandoc/App/CommandLineOptions.hs @@ -601,6 +601,14 @@ options = "true|false") "" -- "Make slide shows include all the needed js and css" + , Option "" ["link-images"] -- maybe True (\argStr -> argStr == "true") arg + (OptArg + (\arg opt -> do + boolValue <- readBoolFromOptArg "--link-images" arg + return opt { optLinkImages = boolValue }) + "true|false") + "" -- "Link images in ODT rather than embedding them" + , Option "" ["request-header"] (ReqArg (\arg opt -> do |
