method

tag_string

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: TagBuilder
tag_string(name, content = nil, options, escape: true, &block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/tag_helper.rb, line 278
          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
Register or log in to add new notes.