I have an href tag <li><a href="/"><span></span>Home</a></li> Which i need to convert to <li> <%= link_to('Home', '/Home/') %></li> But when I enter <span></span> it reads an error. How do i enter <span></span> . So that its the same as href tag above ? <span></span> needs to be there as it is a css fix ?

thanks

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can put the <span></span> in your first argument, so link_to '<span></span>Home', '/' should give you exactly what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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