mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 10:22:29 +08:00
14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
import { Plugin } from 'ckeditor5';
|
|
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;
|
|
}
|
|
}
|