Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Devops image in readme from relative path

I'm trying to add an image to my readme but I can't get it to render. As far as I can see online my current setup should work.

My folder structure is like so:

enter image description here

And then I tried to use the image located in the resources directory, but that did not work:

![Architecture view for AllProjects.png](./Resources/Architecture-view-for-AllProjects.png)

Any suggestions?

like image 765
sommmen Avatar asked Oct 20 '25 14:10

sommmen


1 Answers

This seems to work well for me: Replace the space with   or %20.

![Architecture view for AllProjects.png](./Resources/Architecture%20view%20for%20AllProjects.png)

![Architecture view for AllProjects.png](./Resources/Architecture view for AllProjects.png)

Result:

enter image description here

like image 136
Vito Liu Avatar answered Oct 22 '25 04:10

Vito Liu