define([], function () {
/**
@class Helper
*/
var Helper = {
/**
@method destroy
@param {Object} [options] Data
to be mixed into the event
facade of the `change`
event(s) for these attributes.
@param {Boolean} [options.silent]
If `true`, no `change` event
will be fired.
**/
destroy: function(options){
return "test";
}
};
return Helper;
});
The output of $ ./node_modules/.bin/yuidoc2md test.js is:
#Helper
##Methods
###destroy
**Params**:
* options _Object_
Data
to be mixed into the event
facade of the `change`
event(s) for these attributes.
According to the syntax reference http://yui.github.io/yuidoc/syntax/index.html yuidoc should accept nested param (see the section
*param
). I am trying to parse the following fileThe output of
$ ./node_modules/.bin/yuidoc2md test.js
is:So the nested
options.silent
is missing.