This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
handle_special_TIDYLINK(special)
public
This special is a link where the label is different from the URL
label[url] or {long label}[url]
# File lib/rdoc/markup/to_html.rb, line 134
def handle_special_TIDYLINK(special)
text = special.text
return text unless
text =~ /^\{(.*)\}\[(.*?)\]$/ or text =~ /^(\S+)\[(.*?)\]$/
label = $1
url = $2
label = handle_RDOCLINK label if /^rdoc-image:/ =~ label
gen_url url, label
end