mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			392 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			392 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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 {
 | 
						|
    static get pluginName() {
 | 
						|
        return 'Footnotes';
 | 
						|
    }
 | 
						|
    static get requires() {
 | 
						|
        return [FootnoteEditing, FootnoteUI];
 | 
						|
    }
 | 
						|
}
 | 
						|
//# sourceMappingURL=footnotes.js.map
 |