Module: ActionView::Helpers::TagHelper

Defined in:
lib/enki/html5_tags.rb

Overview

TagHelper will output HTML tags as opposed to self-closed XHTML tags. Shouldn’t be needed for Rails >= version 3.

Instance Method Summary collapse

Instance Method Details

#tag_with_html_patch(name, options = nil, open = true, escape = true) ⇒ Object



4
5
6
# File 'lib/enki/html5_tags.rb', line 4

def tag_with_html_patch(name, options = nil, open = true, escape = true)
  tag_without_html_patch(name, options, true, escape)
end