Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Latest commit

 

History

History
51 lines (39 loc) · 916 Bytes

laxar-dox.md

File metadata and controls

51 lines (39 loc) · 916 Bytes

The "laxar_dox" task

Uses laxar_dox to output API documentation in markdown format.

Overview

Run this task with the grunt laxar_dox command.

Task targets, files and options may be specified according to the grunt Configuring tasks guide.

Options

None

Usage examples

One markdown file

grunt.initConfig( {
   laxar_dox: {
      lib: {
         files: {
            'docs/api.md': [ 'lib/**/*.js' ]
         }
      }
   }
} );

Multiple markdown files

grunt.initConfig( {
   laxar_dox: {
      lib: {
         files: {
            expand: true,
            cwd: 'lib',
            src: 'lib/**/*.js',
            dest: 'docs/api/',
            ext: '.md'
         }
      }
   }
} );