Is it possible to have a token or a bit of code in an html module link that would be translated by DNN to the relative path of a page?
Essentially, I'd like to be able to identify a page by its tabid and then be able to move it around and rename it etc without breaking links I have created on other pages.
In other words I'd like to avoid adding the actual page name in the html. I would like to use a token that includes the tabid of the page I want to link to in the link href.
This:
<ahref="[pagelink:123]">link text</a>
should get rewritten as this:
<ahref="/path/page-name">link text</a>
Did I miss how you can do this somewhere or is this possible?
Thanks