ランキングに戻る
jsdoc2md/jsdoc-to-markdown
JavaScriptGenerate markdown documentation from jsdoc-annotated javascript
jsdocmarkdownjsdoc-to-markdownapi-documentationgeneratordocumentationdocumentation-tooldocumentation-generatorreadme
主要指標
スター成長
スター
1.8k
フォーク
150
週間成長
—
Issue
26
5001k1.5k
2014年6月2016年6月2018年6月2020年6月2022年7月2024年7月2026年7月
成果物npm
npm install jsdoc-to-markdownREADME
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
- API documentation
- The wiki for example output, FAQs, tutorials, plugins, use with gulp/grunt etc.
© 2014-25 Lloyd Brookes <opensource@75lb.com>.
関連リポジトリ