Home
Softono

Jsdoc To Markdown

Open source MIT JavaScript
1.8K
Stars
150
Forks
26
Issues
14
Watchers
11 months
Last Commit

 About Jsdoc To Markdown

Generate markdown documentation from jsdoc-annotated javascript

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing Jsdoc To Markdown?

We provide expert installation service for this software. Our team will install, configure, and secure Jsdoc To Markdown on your server. plans start at just $30.

Jsdoc To Markdown

View on GitHub

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

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-25 Lloyd Brookes <[email protected]>.