Method: RTFDoc::Renderer#table

Defined in:
lib/rtfdoc.rb

#table(header, body) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/rtfdoc.rb', line 68

def table(header, body)
  <<-HTML
    <div class="table-wrapper">
      <div class="header-table">#{@table_title}</div>
      <table>
        <thead></thead>
        <tbody>#{body}</tbody>
      </table>
    </div>
  HTML
ensure
  @table_title = nil
end