forked from hstarorg/HstarDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog_builder.js
44 lines (35 loc) · 1.25 KB
/
catalog_builder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const fs = require('fs');
const path = require('path');
const replaceRegExp = /<!--TableOfContnets Start-->(\r\n|\n|.|\.)*<!--TableOfContnets End-->/;
const getSpaces = level => {
let result = '';
for (let i = 0; i < level; i++) {
result += ' ';
}
return result;
};
const getSafePath = p => {
let v = p.replace(/\\/g, '/');
return encodeURI(v);
};
let tableOfContnets = '';
const processDir = (folder, level = 0) => {
let dirs = fs.readdirSync(folder);
dirs.forEach(folderName => {
if (folderName.startsWith('.')) {
return;
}
let folderPath = path.join(folder, folderName);
if (fs.statSync(folderPath).isDirectory()) {
tableOfContnets += `${getSpaces(level)}* [${folderName}](${getSafePath(folderPath)})\n`;
processDir(folderPath, level + 1);
} else if (path.extname(folderPath) === '.md') {
tableOfContnets += `${getSpaces(level)}* [${folderName}](${getSafePath(folderPath)})\n`;
}
});
};
processDir('.');
let readmeContent = fs.readFileSync('README.md', 'utf8');
let newReadmeContent = readmeContent.replace(replaceRegExp, `<!--TableOfContnets Start-->\n${tableOfContnets}<!--TableOfContnets End-->\n\n`)
fs.writeFileSync('README.md', newReadmeContent, 'utf8');
console.log('更新目录成功!');