Hi,
I'm currently working on a workflow where a flat file is loaded and has the following structure:
content
[{"title": "Title 1", "url": "url-comes-here"},{"title": "Title 2, "url": "url-comes-here2"}]
I do an enrichment with the profiles and the imported data and pass it to the delivery.
In the delivery, I do the following:
<% var content = JSON.parse(context.content);
content.forEach(function(item) { %>
<p><a href="http://blabla.com/<%= item.url %>" _label="<%= item.title %>"><%= item.title %></a></p>
<% }); %>
If I check the "Tracked URLs" section, I see this:

I would expect, if I test this and click on the links and check the tracking logs afterwards, that the label is translated to either "Title 1" or "Title 2", but it just shows "<%= item.title %>"
Can anyone help me out here?
Kind regards,
Andro