mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 21:05:55 +01:00
16 lines
355 B
JavaScript
16 lines
355 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';
|
||
|
|
|
||
|
|
export default class Math extends Plugin {
|
||
|
|
static get requires() {
|
||
|
|
return [ MathEditing, MathUI, Widget ];
|
||
|
|
}
|
||
|
|
|
||
|
|
static get pluginName() {
|
||
|
|
return 'Math';
|
||
|
|
}
|
||
|
|
}
|