How to read the value of target data in typology rule?
Creating typology rule which will read all the URLs and do some modification on the url.
The URLs are getting populated from schema with target data like https://<%= targetData.youtube_url %> .
I am using below code to get the url and it gives me output as https://<%= targetData.youtube_url %>.
var url = delivery.content.html.urlConfig.url[i].source;
How to get the personalized value for the url ? Need the full url in typology rule.