verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
18 lines (14 loc) • 455 B
JavaScript
/**
* Verb <https://github.com/assemble/verb>
* Generate markdown documentation for GitHub projects.
*
* Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors.
* Licensed under the MIT license.
*/
var verb = require('../');
/**
* Example source file with {%= methods() %} tag,
* ceates a list of methods from the specified file.
*/
var dest = 'test/actual/methods.md';
verb.copy('examples/templates/methods.md', dest, {dest: dest});