Internal links create absolute paths - can they be relative?

When I create an internal link like it is written in the docu as [my link](@/pages/about.md) the path it creates on the website is absolute, so the link points to https://base_url/pages/about/

How can I create relative internal links that point to /pages/about/ ?

It isn’t possible

In case anyone stumbles upon this post, here’s how I’m doing it now:

[my link](/url/to/page) 

With /url/to/page being everything after the base url. I hope this makes sense.

I like that a lot better – it seems much more portable from SSG to SSG.