xLog/src/editor/Help.tsx

17 lines
350 B
TypeScript

import { getSiteLink } from "~/lib/helpers"
import { ICommand } from "."
export const Help: ICommand = {
name: "help",
label: "Help: Markdown syntax and components used by xLog",
icon: "icon-[mingcute--question-line]",
execute: ({ view }) => {
window.open(
`${getSiteLink({
subdomain: "xlog",
})}/xfm`,
)
},
}