Is it possible to create links to pages that automatically update their URL when the page has moved? e.g. via a custom alias that has been defined in the page’s meta data.
Assume I have the following pages:
/lorem/ipsum.md
/lorem/dolor.md
And within ipsum.md
I have the following markdown, containing a link to the other page:
Lorem ipsum [dolor](dolor.md)
Now, if I move dolor.md
to a new location:
/consectetuer/dolor.md
That link would need to be updated like so:
Lorem ipsum [dolor](../consectetuer/dolor.md)
But is there a way to link to pages without having to worry about those links when I move the pages? Or am I going at the all wrong?