CommandLink alias syntax

This commit is contained in:
Zef Hemel
2022-11-29 09:11:23 +01:00
parent 55791cc88e
commit 6a047e1ef4
8 changed files with 172 additions and 22 deletions
+2
View File
@@ -10,6 +10,7 @@ import { listBulletPlugin } from "./list.ts";
import { tablePlugin } from "./table.ts";
import { taskListPlugin } from "./task.ts";
import { cleanWikiLinkPlugin } from "./wiki_link.ts";
import { cleanCommandLinkPlugin } from "./command_link.ts";
export function cleanModePlugins(editor: Editor) {
return [
@@ -36,5 +37,6 @@ export function cleanModePlugins(editor: Editor) {
listBulletPlugin,
tablePlugin,
cleanWikiLinkPlugin(editor),
cleanCommandLinkPlugin(editor),
] as Extension[];
}