mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-12 20:02:28 +08:00
17 lines
400 B
JavaScript
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';
|
|
}
|
|
}
|