A library and CLI tool to generate BibTeX records for IETF RFCs.
npm install rfc-to-bibrfc-to-bib
==========
[![npm Version][NPM VERSION BADGE]][NPM PAGE]
[![GitHub License][LICENSE BADGE]][LICENSE PAGE]
[![Build Status][BUILD BADGE]][BUILD PAGE]
A library and CLI tool to generate BibTeX records for IETF RFCs.
Install
-------
sh
$ npm install --global rfc-to-bib # Or alternately: yarn global add rfc-to-bib
`$3
`sh
$ npm install --save rfc-to-bib # Or alternately: yarn add rfc-to-bib
`Usage
-----
$3
`sh
$ rfc-to-bib --help A CLI tool to generate BibTeX records of IETF RFCs.
Usage
$ rfc-to-bib
Options
-h, --help Display this screen.
-v, --version Display the software version.
Examples
$ rfc-to-bib 2616
$ rfc-to-bib 2616 > rfc2616.bib
`$3
`js
const rfcToBib = require('rfc-to-bib');let rfc = 2616;
rfcToBib(rfc).then(bib => {
console.log(bib);
}).catch(error => {
console.error(error.message);
});
`Testing
-------
`sh
$ npm test # Or alternately: yarn test
``License
-------
The MIT License (Expat). See the license file for details.
[BUILD BADGE]: https://img.shields.io/travis/jbenner-radham/rfc-to-bib.svg?style=flat-square
[BUILD PAGE]: https://travis-ci.org/jbenner-radham/rfc-to-bib
[LICENSE BADGE]: https://img.shields.io/badge/license-MIT%20License-blue.svg?style=flat-square
[LICENSE PAGE]: https://github.com/jbenner-radham/rfc-to-bib/blob/master/LICENSE
[NPM PAGE]: https://www.npmjs.com/package/rfc-to-bib
[NPM VERSION BADGE]: https://img.shields.io/npm/v/rfc-to-bib.svg?style=flat-square