I have a String string on my model that contains an html value, my problem is that when I put the code to render this field in my view, it will be completely converted to html and the end result will be a large string with html characters, shielded ...
@field //= "<div>"
is having
< ;div> ;
How can I override this behavior and make it write html unescaped in my field?
source share