Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 350 Bytes

.verb.md

File metadata and controls

14 lines (11 loc) · 350 Bytes

Usage

var fs = require('fs');
var update = require('{%= name %}');
var readme = fs.readFileSync('README.md', 'utf8');
var snippet = fs.readFileSync('contributing.md', 'utf8');

// Inject the `contributing.md` string before the "License" section
var str = update(readme, 'License', snippet, 'before');

API

{%= apidocs("index.js") %}