private Method

ToLaTeX.convert_special(special)

There's no documentation for this item.

Source Code

# File rdoc/markup/simple_markup/to_latex.rb, line 251
def convert_special(special)
  handled = false
  Attribute.each_name_of(special.type) do |name|
    method_name = "handle_special_#{name}"
    if self.respond_to? method_name
      special.text = send(method_name, special)
      handled = true
    end
  end
  raise "Unhandled special: #{special}" unless handled
  special.text
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.