silverbullet/plugs/core/debug.ts

17 lines
342 B
TypeScript

import { editor, markdown } from "$sb/silverbullet-syscall/mod.ts";
export async function parsePageCommand() {
console.log(
"AST",
JSON.stringify(
await markdown.parseMarkdown(await editor.getText()),
null,
2,
),
);
}
export async function resetClientCommand() {
editor.openUrl("/.client/reset.html");
}