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

How do I add html tag in ruby on rails controller? I want to add this statement include a_tag in ruby on rails controller.

"Go straight to <a href='http://www.sportskaki.com'>www.sportskaki.com</a> to reply.


game_message.message = " Would you like to play " + @game.sport.sport_name.to_s + "Go straight to <a href='http://www.sportskaki.com'>www.sportskaki.com</a> to reply"   

How I do it?

share|improve this question
You shouldn't put it in the controller. Please take a time to read about MVC concepts. People should explain rather than just negative the question. – Kleber S. Dec 26 '12 at 11:41

closed as not a real question by sawa, the Tin Man, bensiu, Ram kiran, Inder Kumar Rathore Dec 27 '12 at 4:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try including your http url inside anchor tag as a string.

share|improve this answer

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