Module: ActionView::Helpers::TagHelper

Defined in:
lib/haml/helpers/action_view_mods.rb

Instance Method Summary collapse

Instance Method Details

#content_tag_with_haml(name, *args, &block) Also known as: content_tag



99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/haml/helpers/action_view_mods.rb', line 99

def content_tag_with_haml(name, *args, &block)
  return content_tag_without_haml(name, *args, &block) unless is_haml?

  preserve = haml_buffer.options[:preserve].include?(name.to_s)

  if block_given? && block_is_haml?(block) && preserve
    return content_tag_without_haml(name, *args) {preserve(&block)}
  end

  returning content_tag_without_haml(name, *args, &block) do |content|
    return Haml::Helpers.preserve(content) if preserve && content
  end
end