Method: IsoDoc::Function::Table#table_parse_core

Defined in:
lib/isodoc/function/table.rb

#table_parse_core(node, out) ⇒ Object



91
92
93
94
95
96
97
# File 'lib/isodoc/function/table.rb', line 91

def table_parse_core(node, out)
  tcaption(node, out)
  colgroup(node, out)
  thead_parse(node, out)
  tbody_parse(node, out)
  tfoot_parse(node, out)
end