-
Notifications
You must be signed in to change notification settings - Fork 151
How to document a ToDo list
Jeroen Claassens (Favna) edited this page Jan 11, 2019
·
1 revision
- jsdoc2md offers a
@done
tag to complement the existing jsdoc@todo
tag making todo lists possible. For example, this source code:
/**
* @todo Write the documentation.
* @todo Implement this function.
*/
function add () {}
/**
* @todo Write the documentation.
* @todo Implement this function.
* @done this one is done
* @done finished
*/
function subtract () {}
/**
* @done this one is done
* @done finished
*/
function multiply () {}
2. Outputs this:
Kind: global function
Todo
- Write the documentation.
- Implement this function.
Kind: global function
Todo
- Write the documentation.
- Implement this function.
- this one is done
- finished
Kind: global function
Todo
- this one is done
- finished
- Home
- How jsdoc2md works
- Additional jsdoc tags supported
- Cherry picking which documentation appears in output
- Showcase ...
- Create ...
- How To ...
- How to use with npm run
- How to use with gulp
- How to create one output file per class
- How to document a AMD module
- How to document a CommonJS module (exports)
- How to document a CommonJS module (module.exports)
- How to document an ES2015 module (multiple named exports)
- How to document an ES2015 module (single default export)
- How to document Promises (using custom tags)
- How to document a ToDo list
- How to document ES2017 features
- How to document TypeScript
- The @typicalname tag
- Linking to external resources
- Param list format options
- Listing namepaths
- Troubleshooting