Local images are not shown
See original GitHub issueHi,
Local images are not being shown inside the plugin
In the .md file I’m reading, two images are present in the code:


Both images are in the same directory of readme.md file, no need to absolute path or subdirectories Both images are PNG with 1192 x 836 resolution
When the .md is exported to html, the images appear correctly
<img src="01.png" alt="01" />
<img src="02.png" alt="02" />
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top Results From Across the Web
javascript - React won't load local images
This usually means your local web server is not serving the images or the url you specified is incorrect. Open your browser console...
Read more >Photo's app not showing local images
If your Photos app is not showing local images, it's possible that the app may not be properly configured to access the local...
Read more >How to fix image not showing in an HTML page
How to fix image not showing in an HTML page · Check the src path to of the <img> tag · Check the...
Read more >Error: Images Not Appearing on My Web Page
Below are some reasons why your images may not be displayed correctly on your Web page. Image files were not uploaded to the...
Read more >Local Images are not showing after building the IPA file ...
I am facing an Local Image not loading on the Screens Issue after building the IPA file on Xcode - 12, IOS -...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

The
file:///trick isn’t a good idea unless you wanna restrict yourself and your md files to MarkdownViewer++. Forget about “Export to HTML”.I think that the issue is because of…
_https://docs.microsoft.com/en-us/dotnet/api/system.uri.scheme?view=net-6.0_
… and…
_https://docs.microsoft.com/en-us/dotnet/api/system.uri.localpath?view=net-6.0#system-uri-localpath_
I haven’t tested the following diff, but it seems that it should address all issues I think…
In MarkdownViewerRenderer.cs…
… and…