랭킹으로 돌아가기
jsdoc2md/jsdoc-to-markdown
JavaScriptGenerate markdown documentation from jsdoc-annotated javascript
jsdocmarkdownjsdoc-to-markdownapi-documentationgeneratordocumentationdocumentation-tooldocumentation-generatorreadme
주요 지표
스타 성장
스타
1.8k
포크
150
주간 성장
—
이슈
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>.
관련 저장소