forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessBlockquoteHtml.js
49 lines (42 loc) · 1.43 KB
/
processBlockquoteHtml.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { recursiveProcessTextHtml, processTextHtml } from "../parseXmlHtml";
export const processBlockquoteHtml = (node, writeTo) => {
writeTo.push("<blockquote class='blockquote'>");
let child = node.firstChild;
let attribution = null;
for (child; child; child = child.nextSibling) {
if (child.nodeName == "ATTRIBUTION") {
attribution = child;
break;
} else {
processTextHtml(child, writeTo);
}
}
if (attribution) {
writeTo.push("<div class='chapter-text-ATTRIBUTION'>\n");
const author = attribution.getElementsByTagName("AUTHOR")[0];
if (author) {
writeTo.push("<span class='chapter-text-AUTHOR'>");
recursiveProcessTextHtml(author.firstChild, writeTo);
writeTo.push("</span>\n");
}
child = attribution.getElementsByTagName("TITLE")[0];
if (child) {
if (author) writeTo.push("<span class='chapter-text-TITLE'>");
recursiveProcessTextHtml(child.firstChild, writeTo);
writeTo.push("</span>\n");
}
child = attribution.getElementsByTagName("DATE")[0];
if (child) {
writeTo.push("<span class='chapter-text-DATE'>");
recursiveProcessTextHtml(child.firstChild, writeTo);
writeTo.push("</span>\n");
}
child = attribution.getElementsByTagName("INDEX")[0];
if (child) {
processTextHtml(child, writeTo);
}
writeTo.push("</div>\n");
}
writeTo.push("</blockquote>\n");
};
export default processBlockquoteHtml;