class Kramdown::Converter::Man

def convert_table(el, opts)

def convert_table(el, opts)
  opts[:alignment] = el.options[:alignment].map {|a| TABLE_CELL_ALIGNMENT[a] }
  table_options = ["box"]
  table_options << "center" if el.attr['class'] =~ /\bcenter\b/
  opts[:result] << macro("TS") << "#{table_options.join(' ')} ;\n"
  inner(el, opts)
  opts[:result] << macro("TE") << macro("sp")
end