Reputation: 2422
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

Resize image in the wiki of GitHub using Markdown
<img src="https://github.com/asd/privategithubrepo/images/output/video1.gif" width="48">
Upvotes: 21
Views: 25814
Reputation: 937
you can use HTML syntax for this purpose
<img src="/images/output/video1.gif" width="250" height="250"/>
I think this will work.
Upvotes: 34