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.
add_special_TIDYLINK()
public
Adds a special for links of the form {<text>}[<url>] and
<word>[<url>]
# File lib/rdoc/markup/formatter.rb, line 89
def add_special_TIDYLINK
@markup.add_special(/(?:
\{.*?\} | # multi-word label
\b[^\s{}]+? # single-word label
)
\[\S+?\] # link target
/, :TIDYLINK)
end