vsch / idea-multimarkdown

Markdown language support for IntelliJ IDEA.
https://plugins.jetbrains.com/plugin/7896-markdown-navigator
Apache License 2.0
812 stars 129 forks source link

img tag preview issue #894

Open ozsay opened 3 years ago

ozsay commented 3 years ago

Hey, I'm trying to add an img tag to a markdown document. I can't use the ![]() format because I need specific image size.

This is currently the problematic section:

For Example....

<img width="720" height="450" src="npm.gif">

# Another section..

The document is showed fine on github, but it appears that the image isn't showed when previewing the document inside webstorm.

After opening the devtools of Java Chromium is see the following message in console: README.md:155 GET file:///path-to-image/gcb._gif_ net::ERR_FILE_NOT_FOUND

The path is OK except for the ._gif_ part. For some reason it adds 2 underscores to the extension. manually removing them from devtools makes it show the image correctly, as expected..