Kong
Kong

Reputation: 2410

Resizing gif in markdown (github)

I am trying to resize my gif that is to be displayed in Github. The gif is in a folder in the repository. I have tried a lot of the solutions but they do not work.

Changing image size in Markdown

![Alt Text](/images/output/video1.gif =250x250)

Resize image in the wiki of GitHub using Markdown

<img src="https://github.com/asd/privategithubrepo/images/output/video1.gif" width="48">

Upvotes: 20

Views: 25550

Answers (1)

ujjal das
ujjal das

Reputation: 927

you can use HTML syntax for this purpose

<img src="/images/output/video1.gif" width="250" height="250"/>

I think this will work.

Upvotes: 33

Related Questions