I'd like to have something like this as output:
<a href="...">See Los Angeles</a>
or
<a href="...">See New York</a>
etc, so New York and Los Angeles would be a variable.
How can I achieve that with Rails? I read something and tried this, but it didn't work:
<%= link_to 'See #{@city.name}', @city %>
Thanks!