I have a system that dynamically generates links. but the html links are displayed like this :
Within your process you can use regex to extract the url from the href string:
const string = "Page Example"; const url = string.match(/(\/)[\w-]*(?=&)/)[0]; console.log(url);