Assuming I created an editor instance for a certain element, e.g. via const editor = new Quill('#editor', {...some options});
Now, I would like to get this editor instance when only having the element available, e.g. something like const editor = Quill.existingEditorFromElement('#editor');
The reason is that I am building a component that can be plugged into existing websites that enhances their editors, and I need a way to get their editor instance.