Class: MetaTags::ContentTag
Overview
Represents an HTML meta tag with content (<tag></tag>). Content should be passed as a ‘:content` attribute.
Instance Attribute Summary
Attributes inherited from Tag
Instance Method Summary collapse
-
#render(view) ⇒ String
Render tag into a Rails view.
Methods inherited from Tag
Constructor Details
This class inherits a constructor from MetaTags::Tag
Instance Method Details
#render(view) ⇒ String
Render tag into a Rails view.
12 13 14 |
# File 'lib/meta_tags/content_tag.rb', line 12 def render(view) view.content_tag(name, attributes[:content], prepare_attributes(attributes.except(:content))) end |