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

13 lines
375 B
TypeScript

import { SysCallMapping } from "../../plugos/system";
import { parse } from "../parse_tree";
import { Language } from "@codemirror/language";
import type { ParseTree } from "../tree";
export function markdownSyscalls(lang: Language): SysCallMapping {
return {
"markdown.parseMarkdown": (ctx, text: string): ParseTree => {
return parse(lang, text);
},
};
}