TiddlyWiki5/plugins/tiddlywiki/bibtex/files
jeremy@jermolene.com f863acf8ac Update BibTeX parser to use later fork of library
https://github.com/ORCID/bibtexParseJs
2020-10-18 17:05:43 +01:00
..
LICENSE Update BibTeX parser to use later fork of library 2020-10-18 17:05:43 +01:00
README.md Update BibTeX parser to use later fork of library 2020-10-18 17:05:43 +01:00
bibtexParse.js Update BibTeX parser to use later fork of library 2020-10-18 17:05:43 +01:00
tiddlywiki.files First pass at bibtex importer 2016-10-18 18:00:01 +01:00

README.md

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-parse-js

var bibtexParse = require('bibtex-parse-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.

Travis CI

See the latest build and results at https://travis-ci.org/ORCID/bibtexParseJs

Credits

(c) 2010 Henrik Muehe. MIT License visit

CommonJS port maintained by Mikola Lysenko visit