class MarkdownUI::FooterTag
Public Class Methods
new(_content, _klass = nil, __id = nil, _data = nil)
click to toggle source
# File lib/markdown-ui/tag/footer_tag.rb, line 3 def initialize(_content, _klass = nil, __id = nil, _data = nil) @klass = _klass @content = _content @data = _data @id = __id end
Public Instance Methods
render()
click to toggle source
# File lib/markdown-ui/tag/footer_tag.rb, line 10 def render "<footer#{_id}#{klass}#{data}>#{content}</footer>" end