I have a list of values in url/title pairs that I\'d like to display. (More specifically, each object has its own list of links, some with 0, some with 1, some with more.) I w
Try
<%= links.map{|wl| link_to wl.title, wl.url}.join(', ').html_safe %>
This instructs Rails to not escape the text.