Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resizing gif in markdown (github)

Tags:

markdown

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">
like image 273
Kong Avatar asked Jan 04 '19 02:01

Kong


People also ask

How do I resize an image in GitHub?

Try resize it!Copy <img> in browser DevTools. Replace ! [](url) to <img> . Add width(and height) attr.

Can you use gifs on GitHub?

Now you can search GIPHY straight from any comment box in GitHub, and add a GIF to your wordy masterpiece in a matter of seconds. No more trying to find a GIF that's under 10MB, no more manual tab opening and searching, no more writing your own markdown — just living your best GIF life.


1 Answers

you can use HTML syntax for this purpose

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

I think this will work.

like image 142
ujjal das Avatar answered Oct 21 '22 22:10

ujjal das