method
convert_special
v1_9_1_378 -
Show latest stable
- Class:
RDoc::Markup::ToHtml
convert_special(special)private
No documentation available.
# File lib/rdoc/markup/to_html.rb, line 336
def convert_special(special)
handled = false
RDoc::Markup::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