-
Notifications
You must be signed in to change notification settings - Fork 21
Description
I'd like to suggest to use PasDoc instead of FPDoc for our project, as PasDoc is reading in the comments directly from the source code and generating the docs from this. For FPDoc we would have to maintain a separate description file.
Using FPDoc means we would need to cut out the comments and transfer them into the description file (additional work). This means for the user also, he/she HAS TO look at the documentation files to get what a function is doing or returns, etc, Or, if we decided to keep the original comments in the code also (what I prefer), then we had to maintain/synchronize both, the comments in the source code and in the description file (additional work).
On the other hand, if we used PasDoc, we just keep the comments as they are. Some C-editor tags like \sa could be directly transformed into @seealso and voila.
What do you think?