mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
51 lines
995 B
JavaScript
51 lines
995 B
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/bibtex/deserializer.js
|
|
type: application/javascript
|
|
module-type: tiddlerdeserializer
|
|
|
|
BibTeX file deserializer
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var bibtexParse = require("$:/plugins/tiddlywiki/bibtex/bibtexParse.js");
|
|
|
|
/*
|
|
Parse an BibTeX file into tiddlers
|
|
*/
|
|
exports["application/x-bibtex"] = function(text,fields) {
|
|
var data,
|
|
results = [];
|
|
// Parse the text
|
|
try {
|
|
data = bibtexParse.toJSON(text)
|
|
} catch(ex) {
|
|
data = ex.toString();
|
|
}
|
|
if(typeof data === "string") {
|
|
return [{
|
|
title: "BibTeX import error",
|
|
text: data
|
|
}];
|
|
}
|
|
// Convert each entry
|
|
$tw.utils.each(data,function(entry) {
|
|
var fields = {
|
|
title: entry.citationKey,
|
|
"bibtex-entry-type": entry.entryType
|
|
};
|
|
$tw.utils.each(entry.entryTags,function(value,name) {
|
|
fields["bibtex-" + name.toLowerCase()] = value;
|
|
});
|
|
results.push(fields);
|
|
});
|
|
// Return the output tiddlers
|
|
return results;
|
|
};
|
|
|
|
})();
|