Summary
jsdoc tags @file and its synonims @overview and @fileoverview seem to be ignored by jsdoc-to-markdown
Steps to reproduce
Create a file with the following contents:
'use strict';
/**
* @file A sample file
*/
/**
* @function foo
*/
function foo () {
return 'bar';
}
Run jsdoc2md:
$ jsdoc2md file.js
<a name="foo"></a>
## foo()
**Kind**: global function
As you can see the contents for the @file tag are not included in the generated markdown.
Other information
Using version 1.3.6. of jsdoc-to-markdown
Summary
jsdoc tags
@fileand its synonims@overviewand@fileoverviewseem to be ignored byjsdoc-to-markdownSteps to reproduce
Create a file with the following contents:
Run
jsdoc2md:As you can see the contents for the
@filetag are not included in the generated markdown.Other information
Using version
1.3.6.ofjsdoc-to-markdown