Hi everybody,
I am working on a local help system using the RichTextEditor control. The app using this help system is a .net9 winforms app displaying the help files in razor components in a blazor web view control. This is working fine except displaying images.
How can I embed an image file into an html or md file without using web notation.
htmlString { get; set; } = @"<p>Here is an image: <img src='j:\\pics\\hlp_3.png' alt='hlp_3.png' width='104' height='142' /></p>";
does not seem to do the trick.
Displaying the md file with the embedded image file in the same directory in vs code using

works as expected. RichTextEditor fails unfortunately.
Maybe you can give me some advice on how to embed local image files into html or md files.
regards
Uwe