-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support Java @param annotations #127
Comments
+1 |
I did some further tests and this also requires changes to: @return |
+1 |
Could you please test if my fork works for you: https://github.com/sjorek/groc … I appreciate any feedback … 😄 |
@sjorek Hm, I couldn't get your fork to solve this issue. |
… sorry, to hear; I guess the problem isn't changing the corresponding regular expressions (esp. making the type optional is really easy). It is more the lack of a proper code-structure to collect all the differences in doctag-implementations in a clean and maintainable way. My fork does is a first attempt to collect these diversities. If you take a look at the language definition file Well, I have to admit, that this only works, if one of you is willing to do so … 😃 |
In java the format is:
@param varname text
there is no type data, this breaks groc with:
The issue is that there is no {type} and the regex seems to always expect it... can it be optional? the reason behind it is that forcing to add {type} to existing javadoc will break javadoc...
The text was updated successfully, but these errors were encountered: