import { Plugin } from '@ckeditor/ckeditor5-core'; import InsertCommand from './insertcommand'; export default class WikiLinkEditing extends Plugin { static get pluginName() { return 'WikiLinkEditing'; } init() { this._defineCommands(); } _defineCommands() { this.editor.commands.add('insertStudipWikiLink', new InsertCommand(this.editor)); } }