Flowdock
method

convert_special

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SM::ToHtml
convert_special(special) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/markup/simple_markup/to_html.rb, line 221
    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
Register or log in to add new notes.