Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Displaying an image in a github readme

I'm trying to get a screenshot of my program to display on the main repository page in github. Every article online I've found was saying to simply add the markdown , but it's not working for me.

Here's the repo page: https://github.com/PainterAndHacker/LambdaCrypt

I've tried both

![Screenshot]\(http://i.imgur.com/ebuHuem.png) 

and

![Screenshot](http://i.imgur.com/ebuHuem.png?raw=true)

But it's simply not displaying the screenshot on the repo page for me. Any suggestions?

like image 728
Nathan Avatar asked Mar 21 '23 05:03

Nathan


2 Answers

please try to add md extention for you README in repo look like right now github assume that it is simple text file

like image 110
Alexander V. Avatar answered Mar 22 '23 19:03

Alexander V.


Display image in GitHub readme.

![Image](location of image in repo.type)

My image place in the main branch so.

![Image](screenshot.jpg)
like image 44
Aftab Alam Avatar answered Mar 22 '23 19:03

Aftab Alam