Lloyd Brookes e4f72ee9ce 9.0.0
2024-09-01 15:33:39 +01:00
2024-08-30 14:31:29 +01:00
2024-08-30 22:58:44 +01:00
2024-08-30 22:58:44 +01:00
2024-08-29 22:36:26 +01:00
2024-08-30 19:18:03 +01:00
2024-08-29 22:36:26 +01:00
2020-05-31 11:14:37 +01:00
2024-08-30 22:58:44 +01:00
2024-01-31 22:49:32 +04:00
2024-09-01 15:33:39 +01:00
2024-09-01 15:33:39 +01:00

view on npm npm module downloads Gihub repo dependents Gihub package dependents Node.js CI js-standard-style

Upgraders, please read the release notes

jsdoc-to-markdown

Generates markdown API documentation from jsdoc annotated source code. Useful for injecting API docs into project README files.

Synopsis

1. Document your code using valid jsdoc comments.

/**
 * A quite wonderful function.
 * @param {object} - Privacy gown
 * @param {object} - Security
 * @returns {survival}
 */
function protection (cloak, dagger) {}

2. Run a command.

$ jsdoc2md example.js

3. Get markdown output.

## protection(cloak, dagger) ⇒ <code>survival</code>
A quite wonderful function.

**Kind**: global function

| Param  | Type                | Description  |
| ------ | ------------------- | ------------ |
| cloak  | <code>object</code> | Privacy gown |
| dagger | <code>object</code> | Security     |

Install

$ npm install --save-dev jsdoc-to-markdown

See also


© 2014-24 Lloyd Brookes <75pound@gmail.com>.

Tested by test-runner.

Description
Generate markdown documentation from jsdoc-annotated javascript
Readme 2.6 MiB
Languages
JavaScript 100%