verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
28 lines (26 loc) • 481 B
JavaScript
/**
* Contrib scaffold. Used by the Assemble
* core team.
*/
module.exports = [
'# {%= name %} {%= badge("fury") %}',
'',
'> {%= description %}',
'',
'## Installion',
'',
'### [npm](npmjs.org)',
'',
'```bash',
'npm i {%= name %} --save',
'```',
'',
'Now that {%= name %} is installed, run: `{%= shortname(name) %}`',
'',
'## Authors',
'{%= contrib("authors") %}',
'',
'## License',
'{%= copyright() %}',
'{%= license() %}'
].join('\n');