Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
new(rdoc, reference = rdoc)
public
Creates a new Inline for
rdoc and reference.
rdoc may be another Inline or a String.
If reference is not given it will use the text from rdoc.
# File lib/rdoc/rd/inline.rb, line 22
def self.new rdoc, reference = rdoc
if self === rdoc and reference.equal? rdoc then
rdoc
else
super
end
end