Is there a way to add a gif to a Markdown file?

后端 未结 9 1549
小蘑菇
小蘑菇 2021-01-29 17:43

I want to add this gif to a GitHub flavored markdown file. If it can\'t be done in GitHub, is it possible to do it in another version of markdown?

9条回答
  •  耶瑟儿~
    2021-01-29 18:23

    Showing gifs need two things

    1- Use this syntax as in these examples

    ![Alt Text](https://media.giphy.com/media/vFKqnCdLPNOKc/giphy.gif)

    Yields:

    Alt Text

    2- The image url must end with gif

    3- For posterity: if the .gif link above ever goes bad, you will not see the image and instead see the alt-text and URL, like this:

    Alt Text

    4- for resizing the gif you can use this syntax as in this Github tutorial link

    
    

    Yields:

提交回复
热议问题