help pages: adds a way to extract the table of contents to the parent, smoothes out the rough loading on help pages
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
"use server";
|
|
|
|
import { readFile } from "fs/promises";
|
|
|
|
export const readMD = async (path: string) => await readFile(path, "utf-8");
|