let start args =
    let col_nb, label, def_alig = table_args args in
    let table = {
      col_nb = col_nb;
      label = label;
      cells = [];
      current_cell = None;
      caption = Buffer.create 64;
      default_align = def_alig;
    } in
    (table, `table (col_nb, label), write table)