Not sure why, but it has been reported on the list (Windows 8), and I reproduced the problem using wine. On Linux/OSX, we get the following correct behavior:
jkr@guppy$ pandoc inline_images.docx
<p>This picture <img src="media/image1.jpg" /> is an identicon.</p>
<p>Here is <a href="http://www.google.com">one <img src="media/image2.jpg" /> that</a> links.</p>
jkr@guppy$ pandoc image.docx
<p>An image:</p>
<p><img src="media/image1.jpg" /></p>
On wine (and Windows 8), we get:
jkr@guppy$ wine pandoc ~/devel/pandoc/tests/docx/inline_images.docx
<p>This picture is an identicon.</p>
<p>Here is <a href="http://www.google.com">one that</a> links.</p>
jkr@guppy$ wine pandoc ~/devel/pandoc/tests/docx/image.docx
<p>An image:</p>
Not sure why, but it has been reported on the list (Windows 8), and I reproduced the problem using wine. On Linux/OSX, we get the following correct behavior:
On wine (and Windows 8), we get: