method

tag_string

tag_string(name, content = nil, options, escape: true, &block)
public

No documentation available.

# File actionview/lib/action_view/helpers/tag_helper.rb, line 242
        def tag_string(name, content = nil, options, escape: true, &block)
          content = @view_context.capture(self, &block) if block

          content_tag_string(name, content, options, escape)
        end