Method: IsoDoc::Function::Table#table_parse

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

#table_parse(node, out) ⇒ Object



75
76
77
78
79
80
81
82
83
# File 'lib/isodoc/function/table.rb', line 75

def table_parse(node, out)
  @in_table = true
  table_title_parse(node, out)
  out.table **table_attrs(node) do |t|
    table_parse_core(node, t)
    table_parse_tail(node, t)
  end
  @in_table = false
end