diff --git a/.vitepress/loaders/guides.data.ts b/.vitepress/loaders/guides.data.ts deleted file mode 100644 index 2f5270eee..000000000 --- a/.vitepress/loaders/guides.data.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { writeFile, readFile } from "node:fs/promises"; -import { defineLoader } from "vitepress"; - -interface Data { - title?: string; - content?: string; - url?: string; -} -declare const data: Data; -export { data }; - -const page = "https://rentry.co/fmhy-guides/raw"; -const regex = /\* \[([^\]]+)]\(([^)]+)\)/g; -const rentryRe = /(?<=rentry\.(co|org)).*/; -const guides = new Set(); - -const f = async (url: string) => { - const contents = await (await fetch(url)) - .text() - .catch((error: Error) => console.error(`Failed at ${url}`, error)); - return contents; -}; - -export default defineLoader({ - async load(): Promise { - const contents = await f(page); - let match: any[] | null; - while ((match = regex.exec(contents)) !== null) { - const title = match[1]; - const url = match[2]; - // Fetch rentry guides - if (rentryRe.test(url)) { - const content = await f(`${url}/raw`); - guides.add({ title, content }); - } else { - // Everything else can be here - guides.add({ title, url }); - } - } - const obj = Object.fromEntries( - [...guides.entries()].map((entry, index) => [index.toString(), entry]), - ); - await writeFile("./guides.json", JSON.stringify(obj, null, 4), "utf-8"); - return JSON.parse(await readFile("./guides.json", { encoding: "utf-8" })) as Data; - }, -}); diff --git a/guides.md b/guides.md deleted file mode 100644 index ab82d188c..000000000 --- a/guides.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Guides ---- - - - - - - - - - -