import { syscall } from "./syscall"; import type { ParseTree } from "../silverbullet-common/tree"; export async function parseMarkdown(text: string): Promise { return syscall("markdown.parseMarkdown", text); }