docs-images
v1.1.0
Published
TQ1 document generator
Downloads
3
Readme
Doc Images
Usage
Add
npm install docs-images
to youpackage.json
Call the require
var tq1docs = require('br-tq1-doc-images');
. To generate the images, call the methodtq1docs.generate
passing the configuration object and a callback function. The options is:
- source_path: path to the text files
- source_extension: files extension
- images_path: output images path
Example
var docs = require('docs-images');
docs.generate({
source_path: './src',
source_extension: 'txt',
images_path: './images'
}, function(err) {
if (err) {
console.log('errr generating docs: ' + err);
} else {
console.log('docs generated :)');
}
});