h / html_escape don’t work within a controller method.

I know, it’s for views. (Or was — haven’t done much Rails since v2.3). But I’m just building an eensy-weensy string and want to use this method in my controller.

So how can I escape HTML from within a controller method?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

ERB::Util.html_escape

link|improve this answer
feedback

You can mark the string as HTML safe by calling html_safe on it and when it is passed to the view it should be rendered correctly.

link|improve this answer
This is the right method, but needs the full namespace in the controller context, as per Michaël’s answer. Thanks! – Alan H. Jul 16 '11 at 0:55
feedback

Your Answer

 
or
required, but never shown

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