1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 13:48:46 +02:00

reduce header levels in README to allow for TOC navigation on the docs site

This commit is contained in:
Ell 2023-05-10 23:06:34 +02:00
parent e09484cbe7
commit 1d4a2ebdf7

View file

@ -1,6 +1,11 @@
exports.preTransform = function (model) {
// point to the release branch in the readme when on the website
if (model._path.includes("index"))
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;
};