Render inline image in GitHub without link

githubimages

Is it possible to show image in GitHub markdown without it automatically wrapping it in a link to "full version"?

It does so even for small icons and logos, which is rather annoying.

Best Answer

Best answer I could come up with is wrapping the image in

<a></a>

which besides having an additional DOM element works great.

Edit: <a href="#"></a> works as well but the image retains cursor: pointer.