Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm facing a quite little problem. In my view.html.erb, I'm using words with German umlauts (ä, ö, ü..). Of course it's not working, to write äöü in the html.erb like this, I need to write the normal HTML-umlauts-codes (ü) so the umlauts will be viewed in browser. This is working quite well, but it's not working in the link name as you can see in this picture: http://img7.imagebanana.com/img/540vnz2y/umlaut.PNG

This is the code I'm using right now: <p> <%= link_to "zur&Uuml;ck", :controller => "employees", :action => "index" %>

does anybody know how to manage it that I can also use umlauts in link-names?

share|improve this question

2 Answers

up vote 3 down vote accepted

Rails 3 automatically escapes strings, use html_safe to avoid escaping.

<%= link_to "&Uuml;bersicht".html_safe , :controller => "employees", :action => "show", :id => @employee %>
share|improve this answer
great! Thanks, it works! – Kirinriki Jul 11 '11 at 9:33

Why don't you just write like this:

<%= link_to "äöü", something_url %>

I've got in all of my views utf8 coding and I can easily use Polish diacritics in link_to methods.

share|improve this answer
Hm, it's not working with German umlauts. I get a wrongEncodingError. – Kirinriki Jul 11 '11 at 10:47
My bad, I thought that is no difference between Polish, Swedish and German diacritics encoded in utf8 – Arti Jul 11 '11 at 12:52
Yeah, that would be logical :D Discrimination! – Kirinriki Jul 12 '11 at 15:53
It works for me, BUT! If you use a special font (@font-face) there may be problems displaying the umlauts in that font. – pduersteler Nov 1 '11 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.