1
0
silverbullet/packages/plugos-silverbullet-syscall/markdown.ts

8 lines
212 B
TypeScript
Raw Normal View History

2022-04-05 15:02:17 +00:00
import { syscall } from "./syscall";
2022-04-03 16:12:16 +00:00
2022-04-25 08:33:38 +00:00
import type { ParseTree } from "../common/tree";
2022-04-11 18:34:09 +00:00
export async function parseMarkdown(text: string): Promise<ParseTree> {
2022-04-04 09:51:41 +00:00
return syscall("markdown.parseMarkdown", text);
2022-04-03 16:12:16 +00:00
}