mirror of
https://github.com/wassname/template.git
synced 2026-07-05 19:42:12 +08:00
Fix
This commit is contained in:
+7
-3
@@ -80,13 +80,17 @@ export default function(dom, data) {
|
||||
});
|
||||
|
||||
if (data.citations) {
|
||||
data.citations.forEach(key =>
|
||||
data.citations.forEach(key => {
|
||||
let d = data.bibliography[key];
|
||||
if(!d) {
|
||||
console.warn("No bibliography data fround for " + key)
|
||||
} else {
|
||||
meta("citation_reference", citation_meta_content(data.bibliography[key]) )
|
||||
);
|
||||
};
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function appendHtml(el, html) {
|
||||
el.innerHTML += html;
|
||||
}
|
||||
|
||||
Vendored
+8
-3
@@ -4311,12 +4311,17 @@ var meta = function(dom, data) {
|
||||
});
|
||||
|
||||
if (data.citations) {
|
||||
data.citations.forEach(function (key) { return meta("citation_reference", citation_meta_content(data.bibliography[key]) ); }
|
||||
);
|
||||
data.citations.forEach(function (key) {
|
||||
var d = data.bibliography[key];
|
||||
if(!d) {
|
||||
console.warn("No bibliography data fround for " + key);
|
||||
} else {
|
||||
meta("citation_reference", citation_meta_content(data.bibliography[key]) );
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
function appendHtml(el, html) {
|
||||
el.innerHTML += html;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user