No longer index templates tagged as #template
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import type { PageMeta } from "$sb/types.ts";
|
||||
import { system } from "../../plug-api/syscalls.ts";
|
||||
|
||||
export function renderTemplate(
|
||||
templateText: string,
|
||||
pageMeta: PageMeta,
|
||||
data: any = {},
|
||||
): Promise<string> {
|
||||
return system.invokeFunction(
|
||||
"template.renderTemplate",
|
||||
templateText,
|
||||
pageMeta,
|
||||
data,
|
||||
);
|
||||
}
|
||||
|
||||
export function cleanTemplate(
|
||||
templateText: string,
|
||||
): Promise<string> {
|
||||
return system.invokeFunction(
|
||||
"template.cleanTemplate",
|
||||
templateText,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user