1
0
silverbullet/plugs/editor/help.ts
2023-08-28 17:12:15 +02:00

13 lines
346 B
TypeScript

import { editor } from "$sb/syscalls.ts";
import { version } from "../../version.ts";
export async function versionCommand() {
await editor.flashNotification(
`You are currently running SilverBullet ${version}`,
);
}
export async function gettingStartedCommand() {
await editor.openUrl("https://silverbullet.md/Getting%20Started");
}