Notes/src/math.js

17 lines
374 B
JavaScript
Raw Normal View History

2023-02-06 19:35:50 +01:00
import { Plugin } from 'ckeditor5/src/core';
import { Widget } from 'ckeditor5/src/widget';
2019-08-31 20:48:37 +03:00
import MathUI from './mathui';
import MathEditing from './mathediting';
import AutoMath from './automath';
2019-08-31 20:48:37 +03:00
export default class Math extends Plugin {
static get requires() {
2020-08-29 17:33:41 +03:00
return [ MathEditing, MathUI, AutoMath, Widget ];
2019-08-31 20:48:37 +03:00
}
static get pluginName() {
return 'Math';
}
}