mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
225 B
JavaScript
16 lines
225 B
JavaScript
|
/**
|
||
|
* @param {Editor} editor
|
||
|
* @param {String} url
|
||
|
*/
|
||
|
function register(editor, url) {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param {WysiwygConfigOptions} options
|
||
|
* @return {register}
|
||
|
*/
|
||
|
export function getPlugin(options) {
|
||
|
return register;
|
||
|
}
|