I am creating locale files for internationalization in a rails app, and have a url that I want translated with tags included , for example
html.erb
<%= t(foo.bar.xxxx) %>
yml file
foo: bar: xxxx: "xxxx"
result
< ;a href= "/info/index.html"> ;xxxx</a> ;
which breaks my links. I do not have an h on the ruby part, so shouldn't this work? Or should I just not have html tags within the yml file?
Rails version is 3.0.1 Ruby version is 1.8.7 p249