This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
as_href(from_path)
public
Returns a reference to outselves to be used as an href= the form depends on
whether we’re all in one file or in multiple files
# File lib/rdoc/generator.rb, line 867
def as_href(from_path)
if @options.all_one_file
"#" + path
else
RDoc::Markup::ToHtml.gen_relative_url from_path, path
end
end