mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
6 lines
276 B
JavaScript
6 lines
276 B
JavaScript
exports.preTransform = function (model) {
|
|
// point to the release branch in the readme when on the website
|
|
if (model._path.includes("index"))
|
|
model.conceptual = model.conceptual.replaceAll(/\/MLEM(\/[^/]+)?\/main\//g, "/MLEM$1/release/");
|
|
return model;
|
|
};
|