I want to keep related assets in the same folder as the relevant markdown.
+-- README.md
+-- some-folder
| +-- index.md
| +-- img
| +-- example-screenshot.png
Displaying the image on the page is fine using:

The location of the files when vuepress build
is run is updated: /assets/img/my-new-img.ac30dec4.jpg
However, if I just want a link to the screenshot the, the url isn't being processed correctly:
[See screenshot](./img/example-screenshot.png)
The link comes out as '/some-folder/img/my-new-img.jpg'
Not sure if this would be a bug, feature request, or if I'm not doing it correctly.