In my form, I want the responder to be able to add multiple urls to one answer separated by commas. In flow, I want to be able to display those links in a Teams message (which I have set up and working properly). The only way I've seen to display links from a Forms response is to wrap it in HTML:
<a href="[form response]">[form response]</a>
I want to be able to display it in the teams message as
Links: [link1] [link2] [link3] [link4]... etc.
I'm new to flow and my Google searches... I mean Bing searches... haven't turned up what I'm looking for. Chalk it up to not knowing what things are called, most likely. I've looked through expressions pages in Microsoft docs and understand that you can run loops, but I'm not seeing how to run a loop within a message body like that, only running loops over the items that are generated via actions and triggers. 
I know I can split the string by whatever delimiter I tell them to, but can I then loop through the items of the resulting array and tell it to display " <a href="[item()]">[item()]</a>" for each item? The responder will be instructed to submit links separated by commas. link1, link2, link3, etc. Above is basically my full flow (minus the response submitted trigger), so I'm happy to redo any of it to get it to work the way I want.