docs-images

1.1.0 • Public • Published

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 :)');
  }
});

/docs-images/

    Package Sidebar

    Install

    npm i docs-images

    Weekly Downloads

    2

    Version

    1.1.0

    License

    MIT

    Last publish

    Collaborators

    • felipesabino
    • taqtile
    • lucasbcoelho