/
alt3rmann
/
label-studio
Обзор
Документация
Войти
/
alt3rmann
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
docs/scripts/ignoreFilesBasedOnTier.js
15 строк
516 B
Max Tkachenko
docs: New docs engine (#3176)
06 мар 2023, 23:35
Не верифицирован
06 мар 2023, 23:35
be6ac8a
Код
Авторство
О чём код?
hexo.extend.generator.register('page', function(locals){ const { config } = this; /* If you’re on the OSS site, remove every pages with `enterprise` tier. Opposite for the ENT site */ const tierToRemove = config.theme_config.tier === "opensource" ? "enterprise" : "opensource"; const pagesToBuild = locals.pages.filter(page => page.tier !== tierToRemove); return pagesToBuild.map(function(page){ return { path: page.path, data: page, layout: page.layout || 'page' }; }); });