github / cmark-gfm

GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C
Other
893 stars 173 forks source link

Don't flatten links around images into autolinks #354

Open gravypod opened 11 months ago

gravypod commented 11 months ago

Sometimes users of markdown will want to add a clickable image into their content. This is done using the following syntax:

[![alt text](http://.../img.png)](http://.../website)

This used to get turned into the following:

<http://.../website>

This commit prevents that from happening for links.