Merge pull request #18699 from SDA-SE/feat/default-mkdocs-plugins

feat: support custom default plugins for techdocs
This commit is contained in:
Morgan Bentell
2023-08-23 10:58:43 +02:00
committed by GitHub
12 changed files with 100 additions and 14 deletions
+5
View File
@@ -57,6 +57,11 @@ export interface Config {
* will be broken in these scenarios.
*/
legacyCopyReadmeMdToIndexMd?: boolean;
/**
* List of mkdocs plugins which should be added as default to all mkdocs.yml files.
*/
defaultPlugins?: string[];
};
};