mkdoc / mkref

Link reference collation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Link References

Build Status npm version Coverage Status

Collect link references

Collates link references from all documents in the stream and flushes a paragraph with the link references at the end of the stream.

Install

npm i mkref --save

For the command line interface install mkdoc globally (npm i -g mkdoc).



Usage

Create the stream and write a commonmark document:

var ref = require('mkref')
  , ast = require('mkast');
ast.src('[example]: http://example.com')
  .pipe(ref())
  .pipe(ast.stringify({indent: 2}))
  .pipe(process.stdout);

Example

Collate link references:

mkcat README.md | mkref | mkout

Help

Usage: mkref [options]

  Link reference collation.

Options
  -h, --help              Display help and exit
  --version               Print the version and exit

mkref@1.0.8

API

ref

ref([opts][, cb])

Gets the link reference collation stream.

Returns an output stream.

  • opts Object processing options.
  • cb Function callback function.

Options

  • input Readable input stream.
  • output Writable output stream.

License

MIT


Created by mkdoc on April 18, 2016

About

Link reference collation

License:Other


Languages

Language:JavaScript 100.0%