Emma d0cb74bea8 ttcmd: adds hr element
help pages: adds a way to extract the table of contents to the parent,
smoothes out the rough loading on help pages
2024-03-13 02:52:59 -06:00

6 lines
133 B
TypeScript

"use server";
import { readFile } from "fs/promises";
export const readMD = async (path: string) => await readFile(path, "utf-8");