-
I have a Markdown document with an image as a base64 encoded data URL which I'd like to convert to a Word document. However the image isn't included, only the link text. Does Pandoc support this feature? I have tried running with Markdown input:
Word Doc output:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The issue was running Pandoc with |
Beta Was this translation helpful? Give feedback.
The issue was running Pandoc with
--sandbox=true
. I'm guessing it's protecting against some attack vector from data URIs. Disabling sandbox mode worked as expected - tested with pandoc 2.19.2. The error wasn't visible as I was using thepypandoc
wrapper