开发者_Go百科
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this questionI need to write a documentation for our JavaScript libraries API and publish them as HTML (like the jQuery API site and similar). I think there are two ways to tackle this task.
- Write comments in the JavaScript and find a way to parse it (like JsDoc Toolkit or jGrouseDoc)
- Write it manually (in a wiki?)
I'm looking for good tools to do it. Any ideas?
You can put Javadoc comments in Javascript code. Use Javadoc.exe in the JDK installation to generate the HTML documentation.
Verb seems promising. I'm following it.
精彩评论