import { syscall } from "../syscall.ts"; import type { ParseTree } from "$lib/tree.ts"; export function parseMarkdown(text: string): Promise { return syscall("markdown.parseMarkdown", text); }