This commit is contained in:
Shan Carter
2017-01-09 17:09:54 -08:00
parent 010daea5f5
commit bed9a09325
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -8,6 +8,7 @@ export default function(dom, data) {
if (el) {
let rawBib = el.textContent;
let parsed = bibtexParse.toJSON(rawBib);
console.log(parsed);
if(parsed) {
parsed.forEach(e => {
bibliography[e.citationKey] = e.entryTags;
+1
View File
@@ -4194,6 +4194,7 @@ var bibliography = function(dom, data) {
if (el) {
var rawBib = el.textContent;
var parsed = bibtexParse.toJSON(rawBib);
console.log(parsed);
if(parsed) {
parsed.forEach(function (e) {
bibliography[e.citationKey] = e.entryTags;
+1 -1
View File
File diff suppressed because one or more lines are too long