更新文档导航顺序,添加新页面和翻译内容

This commit is contained in:
boybook
2025-03-26 10:59:30 +08:00
parent 7de24ab663
commit 5382f625fc
41 changed files with 3591 additions and 3119 deletions

View File

@@ -64,7 +64,7 @@ async function findMarkdownFiles(dir) {
const content = await fs.readFile(fullPath, 'utf-8');
// 如果超过600行跳过
const lines = content.split('\n').length;
if (lines > 600) {
if (lines > 6000) {
console.log(`⏭️ 跳过超过600行的文件: ${path.relative(targetDir, fullPath)}`);
continue;
}