ckanaction/docs/lib/get-llm-text.ts

10 lines
297 B
TypeScript

import type { InferPageType } from "fumadocs-core/source";
import type { source } from "@/lib/source";
export async function getLLMText(page: InferPageType<typeof source>) {
const processed = await page.data.getText("processed");
return `# ${page.data.title} (${page.url})
${processed}`;
}