module ActionView::Helpers::OutputSafetyHelper

def raw(stringish)

# => 'Jimmy Tables'
raw @user.name

For example:

input.
escape tags. This is not recommended if the data is coming from the user's
now default, this can be used when you don't want Rails to automatically
This method outputs without escaping a string. Since escaping tags is
def raw(stringish)
  stringish.to_s.html_safe
end