Method: String#html_safe

Defined in:
lib/active_support/core_ext/string/output_safety.rb

#html_safeObject

Marks a string as trusted safe. It will be inserted into HTML with no additional escaping performed. It is your responsibility to ensure that the string contains no malicious content. This method is equivalent to the raw helper in views. It is recommended that you use sanitize instead of this method. It should never be called on user input.

[View source]

225
226
227
# File 'lib/active_support/core_ext/string/output_safety.rb', line 225

def html_safe
  ActiveSupport::SafeBuffer.new(self)
end