class Kramdown::Converter::Man
def convert_td(el, opts)
def convert_td(el, opts) result = opts[:result] opts[:result] = '' inner(el, opts) if opts[:result] =~ /\n/ warning("Table cells using links are not supported") result << "\t" else result << opts[:result] << "\t" end end