2024-08-07 02:11:38 +08:00
|
|
|
import { editor } from "@silverbulletmd/silverbullet/syscalls";
|
2023-05-26 22:37:32 +08:00
|
|
|
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");
|
|
|
|
}
|