Notes/src/math.js
2020-08-29 17:33:41 +03:00

17 lines
400 B
JavaScript

import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import Widget from '@ckeditor/ckeditor5-widget/src/widget';
import MathUI from './mathui';
import MathEditing from './mathediting';
import AutoMath from './automath';
export default class Math extends Plugin {
static get requires() {
return [ MathEditing, MathUI, AutoMath, Widget ];
}
static get pluginName() {
return 'Math';
}
}