Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7-rc-1
-
Fix Version/s: 1.7.3, 1.6.9, 1.8-beta-1
-
Component/s: GroovyDoc
-
Labels:None
-
Number of attachments :
Description
Groovydoc currently does not process Javadoc tags such as @param and @see. Currently, these tags are output with minimal processing. They need to be modified to produce the proper Javadoc HTML output.
For example,
@param arg0 Argument 0.
@param arg1 Argument 1.
Should output
Parameters:
arg0 Argument0.
arg1 Argument1.
Not
param:
arg0 Argument0.
param:
arg1 Argument1.
Should be working now but some extra testing would be greatly appreciated