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.
internal_to_external(name)
public
Convert a name from internal form (containing punctuation) to an external
form (where punctuation is replaced by %xx)
# File lib/rdoc/ri/ri_writer.rb, line 15
def RiWriter.internal_to_external(name)
name.gsub(/\W/) { sprintf("%%%02x", $&[0]) }
end