diff --git a/src/steps/processExcludedFiles.ts b/src/steps/processExcludedFiles.ts index f34f8420..20fb99f2 100644 --- a/src/steps/processExcludedFiles.ts +++ b/src/steps/processExcludedFiles.ts @@ -17,7 +17,7 @@ export function processExcludedFiles() { includeBasePath: true, globs: ['**/*.md', '**/index.yaml', ...ignore], // Ignores service directories like "_includes", "_templates" and etc. - ignore: ['**/_*/**/*'], + ignore: ['**/_*/**/*', '**/_include--*'], }); const navigationPaths = TocService.getNavigationPaths().map((filePath) => convertBackSlashToSlash(resolve(inputFolderPath, filePath)),