bibtex-parser-js

0.0.2 • Public • Published

bibtexParseJs

A JavaScript library that parses BibTeX parser. Forked from bibtex-parser.

Using in Browser

Include bibtexParse.js and call

bibtexParse.toJSON('@article{sample1,title={sample title}}');

Using in Node.js

Install npm install bibtex-parser-js

var bibtexParse = require('bibtex-parser-js');

var sample = bibtexParse.toJSON('@article{sample1,title={sample title}}');

console.log(sample);

Returns A parsed bibtex file as a JSON Array Object

[ { citationKey: 'SAMPLE1',
    entryType: 'ARTICLE',
    entryTags: { TITLE: 'sample title' } } ]

Contributing

Contributions are welcome. Please make sure the unit test(test/runTest.js) reflects the changes and completes successfully.

Credits

(c) 2010 Henrik Muehe. MIT License visit

CommonJS port maintained by Mikola Lysenko visit

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i bibtex-parser-js

      Weekly Downloads

      33

      Version

      0.0.2

      License

      MIT

      Last publish

      Collaborators

      • rcpeters