My dataset has an attribute that contains a list of item descriptions and hyperlinks:
Item 1|http://www.item1.com^Item 2|http://www.item2.com^Item 3|http://www.item3.com
I'd like to change the contents of the attribute into a bullet list in Markdown:
* iItem 1](http://www.item1.com)
* tItem 2](http://www.item2.com)
* "Item 3](http://www.item3.com)
What would be the best way to do this? The list in the attribute can contain zero, one or n items.