Method: String#html_safe
- Defined in:
- lib/active_support/core_ext/string/output_safety.rb
permalink #html_safe ⇒ Object
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.
225 226 227 |
# File 'lib/active_support/core_ext/string/output_safety.rb', line 225 def html_safe ActiveSupport::SafeBuffer.new(self) end |