mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-12 03:32:30 +08: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';
|
|
}
|
|
}
|