diff options
author | gohai <gottfried.haider@gmail.com> | 2015-05-11 15:49:36 +0200 |
---|---|---|
committer | gohai <gottfried.haider@gmail.com> | 2015-05-11 15:49:36 +0200 |
commit | 8af168a7fe0553b8d240118edf1dd0592b258da6 (patch) | |
tree | d6d311cc8fc6e8545c9c0eafa592e1878eee845c /tests | |
parent | 4b251e93b4012f220586f0f878f0edac363e3c3a (diff) | |
download | pandoc-8af168a7fe0553b8d240118edf1dd0592b258da6.tar.gz |
Fix image URIs in ICML output (v2)
InDesign expects LinkResourceURI to start with "file:" for local filenames, and won't render/link the image without.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/writer.icml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/writer.icml b/tests/writer.icml index 968e84941..26795df58 100644 --- a/tests/writer.icml +++ b/tests/writer.icml @@ -2514,7 +2514,7 @@ These should not be escaped: \$ \\ \> \[ \{</Content> <GraphicBounds Left="0" Top="0" Right="150" Bottom="100" /> </Profile> </Properties> - <Link Self="ueb" LinkResourceURI="lalune.jpg" /> + <Link Self="ueb" LinkResourceURI="file:lalune.jpg" /> </Image> </Rectangle> </CharacterStyleRange><Br /> @@ -2544,7 +2544,7 @@ These should not be escaped: \$ \\ \> \[ \{</Content> <GraphicBounds Left="0" Top="0" Right="150" Bottom="100" /> </Profile> </Properties> - <Link Self="ueb" LinkResourceURI="movie.jpg" /> + <Link Self="ueb" LinkResourceURI="file:movie.jpg" /> </Image> </Rectangle> </CharacterStyleRange> |