class RDoc::Markdown::Literals

def current_column(target=pos)

def current_column(target=pos)
  if c = string.rindex("\n", target-1)
    return target - c - 1
  end
  target + 1
end