7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import { syscall } from "./syscall";
|
|
import type { MarkdownTree } from "../common/tree";
|
|
|
|
export async function parseMarkdown(text: string): Promise<MarkdownTree> {
|
|
return syscall("markdown.parseMarkdown", text);
|
|
}
|