2020-02-23 17:13:23 +01:00
|
|
|
const replacements = new Map();
|
|
|
|
replacements.set(/<imp>([^<]*)<r>/g, function (content) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return `<span class="imp">${content}</span>`;
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
replacements.set(/<item>([^<]*)<r>/g, function (content) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return `<span class="item">${content}</span>`;
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
replacements.set(/<n>/g, function (_content) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return "<br>";
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
replacements.set(/<i>([^<]*)<r>/g, function (content) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return `<em>${content}</em>`;
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
replacements.set(/<tifisgrin>([^<]*)<r>/g, function (content) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return `<span class="tifisgrin">${content}</span>`;
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
$.ajax({
|
2021-04-01 16:38:45 +02:00
|
|
|
url: "https://cdn.jsdelivr.net/gh/Ellpeck/ActuallyAdditions@1.12.2/src/main/resources/assets/actuallyadditions/lang/en_US.lang",
|
2020-02-23 17:13:23 +01:00
|
|
|
cache: false,
|
|
|
|
success: populateManual
|
|
|
|
});
|
|
|
|
|
|
|
|
function populateManual(lang) {
|
|
|
|
let startIndex = lang.indexOf("#Booklet Chapters");
|
|
|
|
let data = lang.substring(startIndex + 18);
|
|
|
|
|
|
|
|
let entries = $("#entries");
|
|
|
|
let sidebar = $("#sidebar");
|
|
|
|
|
|
|
|
for (let topic of data.split("\n\n")) {
|
|
|
|
let lines = topic.split("\n");
|
|
|
|
let t = '<div class="entry rounded">';
|
|
|
|
// first line is name
|
|
|
|
let name = lines[0].substring(lines[0].indexOf("=") + 1);
|
|
|
|
let id = lines[0].match(/chapter\.([^\.]*)\.name/)[1];
|
|
|
|
sidebar.append(`<a href=#${id}>${name}</a>`);
|
|
|
|
t += `<a class="anchor" id="${id}"></a>`;
|
|
|
|
t += `<h1>${name}</h1>`;
|
|
|
|
// following lines are content
|
|
|
|
for (let i = 1; i < lines.length; i++) {
|
|
|
|
let text = lines[i].substring(lines[i].indexOf("=") + 1);
|
|
|
|
t += `<p>${replaceFormatting(text)}</p>`;
|
|
|
|
}
|
|
|
|
t += "</div>";
|
|
|
|
entries.append(t);
|
|
|
|
}
|
|
|
|
|
2020-04-02 01:09:47 +02:00
|
|
|
sidebar.append("<hr>");
|
2021-03-19 12:02:31 +01:00
|
|
|
sidebar.append(`<a href="https://ellpeck.de">Main Site</a>`);
|
2020-04-02 01:09:47 +02:00
|
|
|
sidebar.append(`<a href="https://ellpeck.de/impressum">Impressum</a>`);
|
2020-04-02 21:54:20 +02:00
|
|
|
sidebar.append(`<a href="https://ellpeck.de/privacy">Privacy</a>`);
|
2020-09-06 18:09:25 +02:00
|
|
|
sidebar.append(`<a href="https://git.ellpeck.de/Ellpeck/Web">© Ellpeck</a>`);
|
2020-04-02 01:09:47 +02:00
|
|
|
sidebar.append("<hr>");
|
|
|
|
|
2020-12-16 23:54:06 +01:00
|
|
|
forceToAnchor();
|
2020-02-23 17:13:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function replaceFormatting(text) {
|
|
|
|
for (let [k, v] of replacements.entries()) {
|
2021-03-19 12:02:31 +01:00
|
|
|
const finalV = v;
|
2020-02-23 17:13:23 +01:00
|
|
|
text = text.replace(k, function (_substring, group) {
|
2021-03-19 12:02:31 +01:00
|
|
|
return finalV(group);
|
2020-02-23 17:13:23 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|