Closes #144
This commit is contained in:
parent
a830a0a701
commit
c1620c33e9
1 changed files with 3 additions and 2 deletions
|
@ -145,8 +145,9 @@ function partialFinder(markdownBody) {
|
||||||
|
|
||||||
if (fileExistsTest) {
|
if (fileExistsTest) {
|
||||||
const partialFunction = require(path.join(__dirname, "..", `./components/${filename}.js`));
|
const partialFunction = require(path.join(__dirname, "..", `./components/${filename}.js`));
|
||||||
const markdownHtml = filename === "glossary-toc" ? partialFunction : partialFunction.default(); // kill special case
|
|
||||||
markdownBody = markdownBody.replace(partial, `</div>${markdownHtml}<div class="page__markup">`);
|
if (filename === "glossary-toc") markdownBody = markdownBody.replace(partial, partialFunction);
|
||||||
|
else markdownBody = markdownBody.replace(partial, `</div>${partialFunction.default()}<div class="page__markup">`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue