KinaneD
KinaneD

Reputation: 346

Zoomable image in markdown

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.

Upvotes: 24

Views: 16714

Answers (1)

mb21
mb21

Reputation: 39508

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.

Upvotes: 37

Related Questions