Yes, I forgot to mention that. Thank you for reminding me Daniel. We are currently working to solve this.
So it is important to know that our image migration is currently working only with absolute paths for images!
So what does this means?
For an example, if you have in your article something like this:
<img src="./local_folder/some_image.png" alt="some image">
, we wont be able to migrate this. You will need to fix those source paths to look something like this:
<img src="http://www.yourwebsite.com/local_folder/some_image.png" alt="some image">
, either your source link can be just:
<img src="www.yourwebsite.com/local_folder/some_image.png" alt="some image">
However, you can do migration and after parsing you can change those source links. It is actually users choice right now. If you have any questions or you need any help with it, feel free to ask!
You can read more about "paths" here:
Wikipedia
or
webdesign.about.com