If I do something like:
p= @public_rooms.map { |room| link_to(room.to_s, room) }.to_sentence
I get:
<p><a href="/rooms/15">Général</a> et <a href="/rooms/16">Aléatoire</a></p>
e.g. it gets escaped.
Wouldn’t it be nice if to_sentence was safe by using safe_join, or that we had a safe_to_sentence?
What do you think?