opposite of h()

Is there an opposite to the function h()? or html()?

Something that takes escaped html and turns it back into html?

I suppose I could do it myself with a few gsubs, but i'd rather use a built-in function if there is one.

This maybe obvious, but I've been looking and looking and can't find anything.

Matthew Swasey wrote:

Is there an opposite to the function h()? or html()?

Something that takes escaped html and turns it back into html?

Perhaps CGI.unescapeHTML

http://www.ruby-doc.org/core/classes/CGI.src/M000547.html

Excellent! Thank you.