Housekeeping...

This commit is contained in:
Pieter Vander Vennet 2022-12-08 02:59:44 +01:00
parent 1826e7d9af
commit 420f24f76f
124 changed files with 2637 additions and 996 deletions

View file

@ -130,9 +130,14 @@ AllKnownLayouts.GenOverviewsForSingleLayer((layer, element, inlineSource) => {
WriteFile("./Docs/Layers/" + layer.id + ".md", element, [source], { noTableOfContents: true })
})
Array.from(AllKnownLayouts.allKnownLayouts.values()).map(theme => {
const docs = AllKnownLayouts.GenerateDocumentationForTheme(theme)
WriteFile("./Docs/Themes/" + theme.id + ".md", docs, [`assets/themes/${theme.id}/${theme.id}.json`], { noTableOfContents: true })
Array.from(AllKnownLayouts.allKnownLayouts.values()).map((theme) => {
const docs = AllKnownLayouts.GenerateDocumentationForTheme(theme)
WriteFile(
"./Docs/Themes/" + theme.id + ".md",
docs,
[`assets/themes/${theme.id}/${theme.id}.json`],
{ noTableOfContents: true }
)
})
WriteFile("./Docs/SpecialRenderings.md", SpecialVisualizations.HelpMessage(), [
"UI/SpecialVisualizations.ts",