Class: TogoStanza::Stanza::Markdown::Renderer

Inherits:
Redcarpet::Render::HTML
  • Object
show all
Defined in:
lib/togostanza/stanza/markdown.rb

Instance Method Summary collapse

Instance Method Details

#table(header, body) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/togostanza/stanza/markdown.rb', line 10

def table(header, body)
  <<-HTML.strip_heredoc
    <table class="table">
      #{header}
      #{body}
    </table>
  HTML
end