-
``` javascript
/** Perform foo
* @example foo('hi!');
*/
function foo(bar)
{
return '' + bar + '';
};
```
`jsdoc test.js` gives me:
``` html
foo('<a href="#baz">hi!</a>');
```
`jsdoc2md…
-
How I can build to MD file members of class and private members too?
-
Even though a method is marked as @private, it still shows up in the output.
-
I'm not sure where this belongs, so I'm going to post here. I have this .js file:
``` js
/**
* @function
* @throws {ReferenceError}
* @throws {SyntaxError} Syntax error
* @throws Another error, t…
-
Under which license is this software? MIT?
-
Hey @hegemonic, would you be open to bringing markdown documentation generation to the jsdoc repo? I'm _not_ referring to parsing markdown within a docblock, I'm talking about having markdown instead …
-
Hi, I have the following input code:
``` javascript
/**
* Point
*
* @class Point
* @param {Object} obj
* @constructor
*/
function Point (obj) {
if (obj) …
-
Currently, adding the `@ignore` tag to a jsDoc block has no effect. It would be nice if ignore tags did exactly what it says on the tin.
-
A lot of IDEs have support for JSDoc, so it would be nice, if this could be used. So if the documentation on the wiki is good enough, I should think about switching from YUIDoc to JSDoc to use this he…
-
Running jsdoc2md againt a bunch of js files and getting weird error.
```
C:\Work\>jsdoc2md C:\Work\src\lib\*.js > 1.md
Parameter 'url' must be a string, not undefined
```
Something is wrong but wh…