Website/lib/bootstrap_markdown.rb

7 lines
189 B
Ruby
Raw Normal View History

2016-08-24 14:20:50 -04:00
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