grunt-vdoc
v0.3.5
Published
A grunt plugin that compiles inline documentation into html files
Downloads
3
Readme
grunt-vdoc
Getting Started
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-vdoc --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-vdoc');
The "vdoc" task
Overview
In your project's Gruntfile, add a section named vdoc
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
vdoc: {
compile: {
options: {
meta: {
name: "myProject",
version: "0.0.0",
github: "https://github.com/user/myProject"
},
dest: "./docs/build/",
source: "./src/build/lib.js",
content: "./docs/content/data.json",
templates: "./docs/theme/",
partials: "./docs/theme/partials/",
assets: "./docs/theme/assets/"
}
}
},
});
Options
Specify directories
templates
where are the handlebar templates located?partials
where are the partials located? (The sub-templates handlebars use)dest
where is the destination of the built documentation? (html files)assets
where are the assets located? (css, svg, js, other assets for documentation)
Specify files
content
where is the documentation content located?source
where is the source code to get the documentation content from?
Meta data
- Add any meta data you want, the meta object is transfered to the documentation content in the json file. Which can then be used with the handlebars.