Hello group.

I use 
```
pandoc -f docx -t markdown --extract-media "Lab 1-2.docx-dir" -o file.md file.docx
```
to convert a word document to markdown. The word document has (many) images which are sitting in table cells. One of the results is:
```
   1 +===============================+======================================+
   2 | Click on the Link:\           | ![](./Lab 1-2.docx-dir/media/ima     |
   3 | *[Click here to start the     | ge7.png){width="3.643961067366579in" |
   4 | Local Service                 | height="1.9991174540682415in"}       |
```
(Line numbers from `vim`).

Observe the line break between `ima` and `ge7.png`.

To convert this markdown to word, I use
```
pandoc -f markdown -t docx -o file-new.docx file.md
```
which results in this error message:
```
[WARNING] Could not fetch resource ./Lab%201-2.docx-dir/media/ima%20ge7.png: replacing image with description
```
Observe the `%20` between `ima` and `ge7.png`.

Is there something I can do so that pandoc can put the images into the word document?

Thanks alot.

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/02f65a26-e99a-4cfb-9ef7-899e7f40f899n%40googlegroups.com.