From dd060746a1240b832279da39eb2c7e37a18c4359 Mon Sep 17 00:00:00 2001 From: ZeroZ_JQ Date: Tue, 18 Mar 2025 14:04:06 +0800 Subject: [PATCH] chore: remove unused move_section.js file --- move_section.js | 1 - 1 file changed, 1 deletion(-) delete mode 100644 move_section.js diff --git a/move_section.js b/move_section.js deleted file mode 100644 index ac20869fd4..0000000000 --- a/move_section.js +++ /dev/null @@ -1 +0,0 @@ -const fs = require("fs"); const path = require("path"); const filePath = path.join(process.cwd(), "web/app/(commonLayout)/datasets/template/template.zh.mdx"); let content = fs.readFileSync(filePath, "utf8"); const lines = content.split("\n"); const retrievalSection = lines.slice(1234, 1335).join("\n"); content = lines.slice(0, 1234).concat(lines.slice(1335)).join("\n"); content += "\n\n" + retrievalSection; fs.writeFileSync(filePath, content);