verb
Version:
A project without documentation is like a project that doesn't exist. Verb solves this by making it dead simple to generate docs, using simple markdown templates, with zero configuration required.
18 lines (13 loc) • 341 B
JavaScript
/**
* This example uses >
* examples/plugins/html-comments.js
*
* The plugin uses regex to convert
* HTML comments to valid Lo-Dash templates.
*/
var verb = require('../');
var src = 'examples/templates/html-comments.md';
var dest = 'test/actual/html-comments.md';
verb.copy(src, dest, {
plugins: ['examples/plugins/*.js']
});