Method: Playbook::KitBase#pb_content_tag
- Defined in:
- lib/playbook/kit_base.rb
#pb_content_tag(name = :div, content_or_options_with_block = {}, options = {}, escape = true, &block) ⇒ Object
rubocop:disable Style/OptionalBooleanParameter
111 112 113 114 115 116 |
# File 'lib/playbook/kit_base.rb', line 111 def pb_content_tag(name = :div, = {}, = {}, escape = true, &block) = .merge() .merge(.merge()) content_tag(name, , , escape, &block) end |