0313565610
Complete redo of data store Introduces live queries and live templates
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import { SysCallMapping } from "../../plugos/system.ts";
|
|
import { parse } from "../markdown_parser/parse_tree.ts";
|
|
import { Language } from "../../web/deps.ts";
|
|
import type { ParseTree } from "$sb/lib/tree.ts";
|
|
|
|
export function markdownSyscalls(lang: Language): SysCallMapping {
|
|
return {
|
|
"markdown.parseMarkdown": (_ctx, text: string): ParseTree => {
|
|
return parse(lang, text);
|
|
},
|
|
};
|
|
}
|