Module ActionView::Helpers::TextHelper
In: lib/haml/helpers/action_view_mods.rb
Base\n[lib/haml/helpers/action_view_mods.rb\nlib/haml/template/patch.rb\nlib/haml/template/plugin.rb] InstanceTag lib/haml/template/plugin.rb lib/haml/helpers/action_view_mods.rb FormTagHelper TagHelper FormHelper TextHelper CaptureHelper Helpers ActionView dot/m_14_0.png

Methods

External Aliases

concat -> concat_without_haml

Public Instance methods

concat(string, binding = nil)

Alias for concat_with_haml

[Source]

    # File lib/haml/helpers/action_view_mods.rb, line 73
73:         def concat_with_haml(string, binding = nil)
74:           if is_haml?
75:             haml_buffer.buffer.concat(string)
76:           else
77:             concat_without_haml(string, binding)
78:           end
79:         end

[Validate]