davidB / vscaladoc

A variation of scaladoc : an API generator for project written in Scala
http://code.google.com/p/vscaladoc/
22 stars 3 forks source link

support @see #1

Open davidB opened 15 years ago

davidB commented 15 years ago

vscaladoc doesn't appear to properly process "@see" tags according to the javadoc conventions:

http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#@see

For instance, I have this in the scaladoc comment for S.request:

/**

But the scaladoc just outputs plain text "Req" instead of a link to the Req class page. Similarly, if I use the "method within this class" notation:

/**

I get just the "#receivedCookies()" text, etc. Is this something that vscaladoc supports? I think that having cross-links in the documentation would really help people navigate the functionality in Lift.

Thanks,

Derek