From: Jano Svitok Date: 2008-05-02T00:24:43+09:00 Subject: Re: Preventing automatic hyperlinks in rdoc On Thu, May 1, 2008 at 1:00 PM, Francis Devereux wrote: > How can I prevent rdoc from automatically hyperlinking to methods? > > For example, if I have run rdoc on the following code: > > class Searcher > # Performs a search > def search(params) > end > > # Uses search to find things by name > def search_by_name(name) > end > end > > then the word "search" is a hyperlink in both "Performs a search" and "Uses > search to find things by name". I would like it to only be a hyperlink in > "Uses search to find things by name" (i.e. I want "Performs a search" to be > plain text). > > Thanks, > > Francis. See http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/297786 (=install rdoc 2.0 and prefix by "\") J.