1.1.0 • Published 7 years ago

docs-images v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Doc Images

NPM

Usage

  1. Add npm install docs-images to you package.json

  2. Create the text file with mermaid`. Try using the editor.

  3. Call the require var tq1docs = require('br-tq1-doc-images');. To generate the images, call the method tq1docs.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 :)');
  }
});