I want to link to a documentation of a file in RDoc. but the only way I could do is with the following markup:

configuration.rb[link:files/configuration_rb.html]

I would like to do it in a better way, something like this:

<file>configuration.rb</file>

Is there any existing markup rule to do this?

EDIT: of course I've tried without any markup like this configuration.rb but it shows the filename without the link :(

link|improve this question

feedback

3 Answers

From the Cheat sheet:

Auto hyperlinked: MyClass my_class.rb def my_method; end; #my_method http:, mailto:, ftp:, www. link: (to local filesystem relative to --op) (urls to images are rendered as inline image tags) label[url] (uses label as hyperlink text) {multi word label}[url] (uses label as hyperlink text)

Ruby:

ClassNames, source_files.rb and either method_name_having_an_underscore or #methodnamewithhash are hyperlinked to their documentation.

It sounds like you're looking for that second one, but I've never used it before so I can't give you a fully useful example.

link|improve this answer
well, simply typing as configuration.rb is not working – KARASZI István Feb 25 '10 at 14:17
1  
Well.. I guess your last option is to add the markup you want and submit a patch? Or put in a feature request, at least. – Trevoke Feb 25 '10 at 14:25
yeah, it looks like you're right. so right now it's not possible. – KARASZI István Feb 26 '10 at 8:15
feedback

Try not to use markup at all.

Look at RDoc's own documentation, they have similar links in the "Roadmap" paragraph. They markup is here.

Magic!

link|improve this answer
feedback

http://rdoc.sourceforge.net/doc/index.html

I suppose this must be useful.

link|improve this answer
1  
Yes, it is useful but I started there and ended up here. – KARASZI István Feb 10 '10 at 14:17
3  
RTFM is not really an answer. – Damien Wilson Feb 16 '10 at 17:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.