You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * > Lorem ipsum thingish thing * * @param {Number} `one` you should pass `1` * @param {Number} `two` you should pass `2` * @return {Number} the `one + two` result * @api public */module.exports=functionfoobar(one,two){returnone+two}
will output
### [.exports](./index.js#L10)
* `one` **{Number}**: you should pass `1`
* `two` **{Number}**: you should pass `2`
* `returns` **{Number}**: the `one + two` result
> Lorem ipsum thingish thing
notice the [.exports], so we need to be [foobar] without adding the @name foobar.
And notice the #L10 for which i'm talking in #6.
I can guarantee that these things isn't from my side (from my packages and etc)
The text was updated successfully, but these errors were encountered:
I'm not sure if the issue is for here, but yea... maybe you know better, i dont have time to investigate deeper and just want to mention it
Currently, using some tools like helper-apidocs or the cli apidocs-cli and the following example
will output
notice the
[.exports]
, so we need to be[foobar]
without adding the@name foobar
.And notice the
#L10
for which i'm talking in #6.I can guarantee that these things isn't from my side (from my packages and etc)
The text was updated successfully, but these errors were encountered: