1
0
silverbullet/plug-api/silverbullet-syscall/code_widget.ts
2023-10-31 10:33:38 +01:00

11 lines
267 B
TypeScript

import type { CodeWidgetContent } from "$sb/types.ts";
import { syscall } from "./syscall.ts";
export function render(
lang: string,
body: string,
pageName: string,
): Promise<CodeWidgetContent> {
return syscall("codeWidget.render", lang, body, pageName);
}