I have a program called multipandoc which takes as input a plain-text file in Perl's Plain Old Documentation (.pod) format and converts it simultaneously into .txt, .html, .pdf and .odt formats. It does so by use of the Pod::Pandoc module from CPAN.
If I wish to embed an image in the .html version of the output, I know that I can say:
=begin html
<img src="file:///tmp/images/sector-balances-over-time-sum-to-zero.jpeg">
=end html
Does anyone know what the equivalent argument would be for embedding a locally stored image in OpenOffice/LibreOffice output? That is, I would like to say something like:
=begin odt
[PATH TO IMAGE]
=end odt