Open
Description
Is there an existing issue for this?
- I have searched the existing issues
Use case
I copied some content from another software that may contain some parsable emoji, but when I paste them into Quill Editor they can't parse the emoji using the custom parsing method.
Proposal
I found that there are onImagePaste and onGifPaste methods in QuillEditorConfigurations to handle the problem of pasting pictures. I wonder if there should be an onPaste method to handle the pasted content?
Future<String?> Function(Uint8List)? onImagePaste,
Future<String?> Function(Uint8List)? onGifPaste,