Say I'm using a list to take in two columns: text and url. Instead of the default table, I'd like to mark up the data myself. Are there merge tags that select specific columns, so that I could do something like this...
<ol>
<li><a href="{list:1:2}">{list:1:1}</a></li>
</ol>
And have it spit out a list of links? If not, what would be the best approach to implementing this myself? Thanks.