method

convert_special

ruby latest stable - Class: SM::ToFlow

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

convert_special(special)
private

No documentation available.

# File lib/rdoc/markup/simple_markup/to_flow.rb, line 172
    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