0.3.0 • Published 9 years ago
grunt-atomdoc-md v0.3.0
grunt-atomdoc-md
Grunt plugin for atomdoc-md -- creates markdown from your project's atomdoc.
Installation
Install with npm.
npm install --save-dev grunt-atomdoc-mdUsage
Defaults
#in your Gruntfile
tasks :
atomdoc_md :
default: # defaults below
module: '.' # which module?
doc: 'doc' # doc/output dir
name: 'api.md' # generated file name
level: 'info' # logging levelGenerate README.md
atomdoc_md :
readme: # defaults below
module: '.' # which module?
doc: '.' # doc/output dir
name: 'README.md' # generated file nameatomdoc-md looks for two files to auto import into the generated file:
intro.mdis added to be front of the outputappendix.mdis added after all of the generated content
Both files must be in the doc directory.