mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 00:05:50 +01:00
Add '_regroup/ckeditor5-math/' from commit '6231df7f0e9df7f4d6982b103c02400d4f0b8937'
git-subtree-dir: _regroup/ckeditor5-math git-subtree-mainline:034cd58833git-subtree-split:6231df7f0e
This commit is contained in:
16
_regroup/ckeditor5-math/src/math.ts
Normal file
16
_regroup/ckeditor5-math/src/math.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
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 {
|
||||
public static get requires() {
|
||||
return [ MathEditing, MathUI, AutoMath, Widget ] as const;
|
||||
}
|
||||
|
||||
public static get pluginName() {
|
||||
return 'Math' as const;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user