0
votes

I'm just wondering how AdEven added pictures to the README.md hosted on GitHub without having the pictures in the repo (you can find their GitHub-project here: https://github.com/adeven/adjust_ios_sdk).

The images are hosted under https://raw.github.com/adeven/adjust_sdk/master/Resources/ios/.png and I want to know how to upload the pictures exactly like AdEven.

Thanks and Regards, Sascha

1
tried clicking the file and pressing the Raw button yet? It's the same markup notation that stackoverflow uses btw. Which is known as MarkdownPeterT
The images are in another repository on github: github.com/adeven/adjust_sdk/tree/master/Resources/iosHolger Just

1 Answers

2
votes

if you look at the raw version of the file (https://raw.github.com/adeven/adjust_ios_sdk/master/README.md)

You can see how they do it.

![][drag] where you want the picture

[drag]: https://raw.github.com/adeven/adjust_sdk/master/Resources/ios/drag2.png

To define the file location.

Just replace the name and the location with your own. The raw url is direct access into the repo, so GH doesn't apply any formatting.