module ActionView::Helpers::TextHelper
Public Instance Methods
Source
# File lib/haml/helpers/action_view_xss_mods.rb, line 39 def concat_with_haml_xss(string) if is_haml? haml_buffer.buffer.concat(haml_xss_html_escape(string)) else concat_without_haml_xss(string) end end
Also aliased as: concat
Source
# File lib/haml/helpers/action_view_xss_mods.rb, line 49 def safe_concat_with_haml_xss(string) if is_haml? haml_buffer.buffer.concat(string) else safe_concat_without_haml_xss(string) end end
Also aliased as: safe_concat