forked from AmbireTech/adex-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
41 lines (39 loc) · 1.47 KB
/
index.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
window.onload = function () {
var root = this.document.getElementById("root");
var headerHTMLString = this.document.getElementById("header").outerHTML;
document.getElementById("download").addEventListener("click", () => {
printJS({
printable: "root",
type: "html",
scanStyles: false,
showModal: true,
header: headerHTMLString,
css: [
"styles.css",
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css",
],
});
});
const readme = "./README.md";
fetch(readme)
.then((res) => res.blob())
.then((blob) => {
var reader = new FileReader();
reader.onload = function () {
const adexProtocol = reader.result;
var converter = new showdown.Converter();
// This changes the format of the generated header IDs: spaces are replaced with dashes and a bunch of non alphanumeric chars are removed.
converter.setOption("ghCompatibleHeaderId", true);
// Turning this option on will enable automatic linking when the parser find plain text urls
converter.setOption("simplifiedAutoLink", true);
html = converter.makeHtml(adexProtocol);
root.innerHTML += `<div class='content'>${html}</div>`;
const pages = window.document.getElementsByClassName("break-page");
for (let i = 0; i < pages.length; i++) {
const page = pages[i];
page.innerHTML += i + 1;
}
};
reader.readAsText(blob);
});
};