forked from pingcap/docs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfilterNonCloudDoc.js
47 lines (42 loc) · 968 Bytes
/
filterNonCloudDoc.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
45
46
47
import {
getFileList,
copySingleFileSync,
copyFileWithCustomContentSync,
removeCustomContent,
} from "./utils.js";
const contentHandler = (content = "") => {
return removeCustomContent("tidb", content);
};
const extractFilefromList = (
fileList = [],
inputPath = ".",
outputPath = "."
) => {
fileList.forEach((filePath = "") => {
if (
filePath.includes(`/tidb-cloud/`) ||
filePath.includes(`TOC-tidb-cloud.md`)
) {
return;
}
if (filePath.endsWith(".md")) {
copyFileWithCustomContentSync(
`${inputPath}/${filePath}`,
`${outputPath}/${filePath}`,
contentHandler
);
} else {
try {
copySingleFileSync(
`${inputPath}/${filePath}`,
`${outputPath}/${filePath}`
);
} catch (error) {}
}
});
};
const main = () => {
const filteredLinkList = getFileList(".");
extractFilefromList(filteredLinkList, ".", "./tmp");
};
main();