Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

verb-readme-includes

assemble1.1kMIT0.2.4

Template partials for Verb, the markdown documentation generator with zero-configuration required.

boilerplates, docs, documentation, generate, github, markdown, md, project, readme, repo, template, templates, verb

readme

verb-readme-includes NPM version

Template partials for Verb, the markdown documentation generator with zero-configuration required.

verb and generator-verb depend on this library.

Install with npm

npm i verb-readme-includes --save-dev

Usage

Any template from this library can be included in another template using the {%= include() %} tag.

Example

// add installation instructions to a readme, like those above
{%= include('install-npm') %}

Author

Jon Schlinkert

License

Copyright (c) 2014-2015 Jon Schlinkert Released under the MIT license


This file was generated by verb on February 20, 2015.

changelog

{% if (changelog) { changelog.forEach(function(details, version) { var detailsDate = details.detailsDate; if (detailsDate instanceof Date) { detailsDate = moment(detailsDate).format('YYYY-MM-DD'); } print('\n * ' + [ detailsDate, version, details.changes.join(' '), ].join('\u2003\u2003\u2003')); }); } else { %} (Nothing yet) {% } %}