1
0
silverbullet/plugos-silverbullet-syscall/markdown.ts
2022-04-11 20:34:09 +02:00

8 lines
212 B
TypeScript

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