4.0.0 • Published 6 years ago

helper-reflinks v4.0.0

Weekly downloads
85
License
MIT
Repository
github
Last release
6 years ago

helper-reflinks NPM version NPM monthly downloads NPM total downloads Linux Build Status

Async template helper for generating a list of markdown reference links.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.

Install

Install with npm:

$ npm install --save helper-reflinks

Usage

const reflinks = require('helper-reflinks');

Since this is an async helper, it can only registered with engines that support async helpers:

templates

Register the helper for use with templates

const templates = require('templates');
const app = templates();

app.asyncHelper('reflinks', reflinks());

assemble

To register the helper for use with assemble ^0.6.0:

const assemble = require('assemble');
const app = assemble();

app.asyncHelper('reflinks', reflinks());

verb

Register the helper for use with verb:

const verb = require('verb');
const app = verb();

app.asyncHelper('reflinks', reflinks());

app.task('default', function() {
  app.src('.verb*.md')
    .pipe(app.dest('./'));
});

About

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Related projects

You might also be interested in these projects:

Contributors

CommitsContributor
102jonschlinkert
7stefanwalther

Author

Jon Schlinkert

License

Copyright © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on May 29, 2018.

4.0.0

6 years ago

3.2.1

8 years ago

3.2.0

8 years ago

3.1.6

8 years ago

3.1.5

8 years ago

3.1.4

8 years ago

3.1.3

8 years ago

3.1.2

8 years ago

3.1.1

8 years ago

3.1.0

8 years ago

3.0.3

8 years ago

3.0.2

8 years ago

3.0.1

8 years ago

3.0.0

8 years ago

2.2.1

8 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.1

9 years ago

2.0.0

9 years ago

1.4.3

9 years ago

1.4.2

9 years ago

1.4.1

9 years ago

1.4.0

9 years ago

1.3.0

9 years ago

1.2.3

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago