# File lib/maruku/output/to_latex.rb, line 439
  def to_latex_cell
    s=""
    if @attributes.has_key?(:colspan)
      # TODO figure out how to set the alignment (defaulting to left for now)
      s="\\multicolumn {"<< @attributes[:colspan]<<"}{|l|}{"<<children_to_latex<<"}"
    else
      children_to_latex
    end
  end