mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
11 lines
492 B
JavaScript
11 lines
492 B
JavaScript
exports.preTransform = function (model) {
|
|
if (model._path.includes("index")) {
|
|
// point to the release branch in the readme
|
|
model.conceptual = model.conceptual.replaceAll(/\/MLEM(\/[^/]+)?\/main\//g, "/MLEM$1/release/");
|
|
|
|
// reduce header levels by 1 to allow for TOC navigation
|
|
for (let i = 5; i >= 1; i--)
|
|
model.conceptual = model.conceptual.replaceAll(`<h${i}`, `<h${i + 1}`).replaceAll(`</h${i}`, `</h${i + 1}`);
|
|
}
|
|
return model;
|
|
};
|