1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Modularised our tinymce config and plugins

- Split everything into specific plugin/concern files to make things
  more managable. Means original component file is now simple and much
  of the core config is focused in one place.
This commit is contained in:
Dan Brown
2022-02-05 23:15:58 +00:00
parent 0cde2704d0
commit 921131f999
11 changed files with 896 additions and 718 deletions

View File

@ -0,0 +1,16 @@
/**
* @param {Editor} editor
* @param {String} url
*/
function register(editor, url) {
}
/**
* @param {WysiwygConfigOptions} options
* @return {register}
*/
export function getPlugin(options) {
return register;
}