forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessAttributionPdf.js
34 lines (28 loc) · 959 Bytes
/
processAttributionPdf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { recursiveProcessTextLatex, processTextLatex } from "../parseXmlLatex";
export const processAttributionPdf = (node, writeTo) => {
const attribution = node;
if (attribution) {
const author = attribution.getElementsByTagName("AUTHOR")[0];
if (author) {
writeTo.push("\\quotationdash{}\\textup{");
recursiveProcessTextLatex(author.firstChild, writeTo);
writeTo.push("}");
}
let child = attribution.getElementsByTagName("TITLE")[0];
if (child) {
if (author) writeTo.push(", ");
recursiveProcessTextLatex(child.firstChild, writeTo);
}
child = attribution.getElementsByTagName("DATE")[0];
if (child) {
writeTo.push(" (");
recursiveProcessTextLatex(child.firstChild, writeTo);
writeTo.push(")");
}
child = attribution.getElementsByTagName("INDEX")[0];
if (child) {
processTextLatex(child, writeTo);
}
}
};
export default processAttributionPdf;