Website/lib/bootstrap_markdown.rb
2016-08-24 14:20:50 -04:00

7 lines
189 B
Ruby

class BootstrapMarkdown < Redcarpet::Render::HTML
def table(header, body)
"<table class=\"table table-striped\">\n<thead>#{header}</thead>\n<tbody>#{body}</tbody></table>"
end
end