silverbullet/plugs/editor/help.ts

13 lines
368 B
TypeScript

import { editor } from "@silverbulletmd/silverbullet/syscalls";
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");
}