1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-26 06:31:42 +02:00
MLEM/Docs/overrides/conceptual.extension.js

12 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;
};