tsdoc2md.torn
v0.0.20-alpha
Published
convert typescript comments to markdown file
Readme
tsdoc2md
convert typescript comments to markdown file.
Comments converting of Class, Property, Constructor and Method is implemented. More will come up soon.
Only support annotations @param, @returns, @example.
Please follow typescript doc comment syntax: Doc comment syntax
Demo
Install
npm install -g tsdoc2mdUsage
step1
generate config file named 'tsdoc2md.json'
// tsdoc2md.json
{
"entry": {
"README": "/lib/index.d.ts"
},
"outDir": "/docs/"
}
/**
* 1. key of entry will be name of markdown file.
* 2. entry file should be a declaration file.
*/your tsconfig shoud be:
// tsconfig.json
{
...
"declaration": true,
"declarationMap": true,
"outDir": "lib"
...
}step2
execute command
# use in terminal
tsdoc2md