Is there a tool out there that generates HTML documentation for common JavaScript that is documented in VSDoc syntax (without javadoc! Syntax!)?
It is not possible to change the syntax of JavaDoc, because we are writing JS in Visual Studio, and VS only supports VSDoc comments for JS.
For MS, ASP.NET AJAX is a tool available, but it does not work with common JS.
Example:
$m = {
registerControlType: function(controlPrototype, baseControlType) {
},
requestData: function(control, success, failure, postData, plainResponse, maximumSecondsToCache) {
}
};
source
share