Zoomable image in markdown

KinaneD picture KinaneD · Jul 22, 2015 · Viewed 9.4k times · Source

I am embedding a large image on github wiki. But it turns to be unreadable due to its size. Is it possible to make an image zoomable in markdown language? Specifically, on github wiki?

Thank you.

Answer

mb21 picture mb21 · Jul 22, 2015

Simplest solution is to make a small version of the image (with GIMP/Photoshop etc.) and wrap it in a link to the original image.

[ ![](small.jpg) ](large.jpg)

Other solutions would require having custom CSS or JavaScript which you don't have on GitHub wikis etc.