class Metamagic::TitleTag

Public Instance Methods

sort_order() click to toggle source
# File lib/metamagic/tags/title_tag.rb, line 7
def sort_order
  1
end
to_html() click to toggle source
# File lib/metamagic/tags/title_tag.rb, line 3
def to_html
  content_tag(:title, interpolated_values.join(separator).html_safe) if interpolated_values.any?
end