method
content_tag_string
rails latest stable - Class:
ActionView::Helpers
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