I made a blog with Jekyll but my new post can't load the images.
I'm trying to load them following the example on Jekyll site by adding the image path to the .md document:
![My helpful screenshot]({{ site.url }}/assets/screenshot.jpg)
I got all my images on a folder called _images placed in the root directory (Github project). When I try to add them with a line like this it won't work:
![canvas.png](/_images/canvas.png)
I already tried this too:
![canvas.png]({{site.url}}/_images/canvas.png)
I tried to change add these variables on _config.yml also:
baseurl:/reponame
repo:repo url
But I did not get the images to load.
Why is this happening? Anyone knows how to make the images load?