mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 11:02:27 +08:00
17 lines
374 B
JavaScript
17 lines
374 B
JavaScript
import { Plugin } from 'ckeditor5/src/core';
|
|
import { Widget } from 'ckeditor5/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';
|
|
}
|
|
}
|