In /docs/myDoc.md

This should be able to display an image in "/docs/assets/image.png`
Potential solution:
<img src="./assets/image.png"/><img src={require("./assets/image.png").default}/>Note, this kind of trick probably exist in Gatsby codebase, so it's worth taking a look
we can create a remark plugin for it and convert it to jsx before going to MDX.
yes if you can try to create a poc that would be cool :) I'm not very familiar with remark/rehype
ok i will create a POC.
I have created the poc but I need some help with webpack. I used url-loader in require to load image but it creates a wired base64 with export default embedded in base65 string
I fixed it and created a PR
Most helpful comment
I fixed it and created a PR