mirror of
https://github.com/zadam/trilium.git
synced 2026-01-02 13:39:52 +01:00
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import { Plugin } from 'ckeditor5/src/core.js';
|
|
|
|
import FootnoteEditing from './footnote-editing/footnote-editing.js';
|
|
import FootnoteUI from './footnote-ui.js';
|
|
|
|
export default class Footnotes extends Plugin {
|
|
public static get pluginName() {
|
|
return 'Footnotes' as const;
|
|
}
|
|
|
|
public static get requires() {
|
|
return [ FootnoteEditing, FootnoteUI ] as const;
|
|
}
|
|
}
|