markdown-to-jsx
markdown-to-jsx copied to clipboard
Bug : image Links ex) [](http://example.com)
I want to create a link using an image, but there is a bug in the render. For example:
[](https://www.youtube.com/)
Using the above syntax, I want to make a link with an image. It renders correctly in 'vscode', but when using the library, it gets rendered as:

(The image does not appear)
I want it to be rendered as:
<p><a href="https://www.youtube.com"><img src="https://www.gstatic.com/youtube/img/promos/growth/ytp_lp2_logo_phone_landscape_300x44.png" alt="youtubeImg"></a></p>
But actually, it gets rendered as:
<p><a href="https://www.gstatic.com/youtube/img/promos/growth/ytp_lp2_logo_phone_landscape_300x44.png"></p>
The image tag is lost...
This issue also occurs in the example you have set up (https://markdown-to-jsx.quantizor.dev/)."
Please check and give me feedback👍
#529
#524
Yup I see it, will look into it
Appears to have been fixed by #551, thanks @zegl!
