fix bibtex field case issue

This commit is contained in:
Christopher Olah
2017-03-22 16:07:01 -07:00
parent 56e8de28c4
commit f3578fbf15
+1 -1
View File
@@ -17,7 +17,7 @@ export default function(dom, data) {
(full, x, char) => char);
val = val.replace(/{\\([a-zA-Z])}/g,
(full, char) => char);
e.entryTags[k] = val;
e.entryTags[k.toLowerCase()] = val;
}
bibliography[e.citationKey] = e.entryTags;
bibliography[e.citationKey].type = e.entryType;