class Bootstrap::MarkdownRenderer
Public Instance Methods
table(header, body)
click to toggle source
# File lib/bootstrap/markdown_renderer.rb, line 3 def table(header, body) %{<table class="table table-bordered"> #{header} #{body} </table>} end