method

content_tag_string

rails latest stable - Class: ActionView::Helpers

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

content_tag_string(name, content, options, escape = true)
public

No documentation available.

# File actionview/lib/action_view/helpers/tag_helper.rb, line 252
        def content_tag_string(name, content, options, escape = true)
          tag_options = tag_options(options, escape) if options

          if escape && content.present?
            content = ERB::Util.unwrapped_html_escape(content)
          end
          "<#{name}#{tag_options}>#{PRE_CONTENT_STRINGS[name]}#{content}</#{name}>".html_safe
        end