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