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
Use safe_join combined with html_safe on the separator string.
safe_join
html_safe
Example:
<%= safe_join(links.map { |l| link_to(l.title, l.url) }, ", ".html_safe) %>