Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-07-17 | 556 Bytes | |
v9.1.2 source code.tar.gz | 2025-07-17 | 19.9 kB | |
v9.1.2 source code.zip | 2025-07-17 | 29.7 kB | |
Totals: 3 Items | 50.1 kB | 3 |
Regression fix since v9.1.1
Previously, you could manually render files in a specific order. For example, in the output this code would render docs for two.js
before one.js
.
:::js
const output = await jsdoc2md.render({ files: ['src/two.js', 'src/one.js'] })
This behaviour was broken by the jsdoc-api v9.0.0 release - instead, that version first sorted the files into alphabetical order, thus rendering one.js
before two.js
.
Jsdoc-api v9.3.5 (used internally by jsdoc2md) fixes that regression - previous behaviour restored.