method
tag_string
v7.2.3 -
Show latest stable
- Class:
ActionView::Helpers
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