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
Converts the RDoc markup tidylink into a
Markdown.style link.
# File lib/rdoc/markup/to_markdown.rb, line 168
def handle_special_TIDYLINK special
text = special.text
return text unless text =~ /\{(.*?)\}\[(.*?)\]/ or text =~ /(\S+)\[(.*?)\]/
label = $1
url = $2
if url =~ /^rdoc-label:foot/ then
handle_rdoc_link url
else
gen_url url, label
end
end