1
0
silverbullet/plugs/editor/help.ts

13 lines
346 B
TypeScript
Raw Normal View History

2023-08-28 15:12:15 +00:00
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");
}