GitHub - Display images in the README

There are two ways to make GitHub rendering images in the README:

  • Using relative path. Append ?raw=true to the image uri:
1
![](path/to/image.png?raw=true)
  • Use the intact uri of the image in the GitHub repository:
1
![](https://github.com/username/reponame/blob/master/images/image.png)
0%