-
Notifications
You must be signed in to change notification settings - Fork 588
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
Use regex to translate Doxygen commands #278
Conversation
We shouldn't remove any information though. When something doesn't show up
in Javadoc, we should also use some other format that it accepts so it gets
displayed, but this is secondary. Even when Javadoc complains the
information still shows up in the source code.
|
If you'd like to keep the direction parameter, we could translate |
Yes, something like that sounds fine.
|
Here it is. This PR also translates |
Yeah, that's fine, as long as they appear in the source files themselves, we can refer to them. That's why we need to publish them somewhere, if not in |
…param` and `@see` (pull #278)
Small suggestion to use regex for parsing Doxygen commands.
Main use is to remove
[in]
,[out]
or[in,out]
from@param
, but may be a starting point for a more complex parsing.