Alspb
Alspb
 Sounds reasonable. Since list indentation is used to create nested lists, the editor thinks that there's an item number "1" before the "text" item. But it looks strange...
Sounds reasonable, but not sure it's easy to implement - we should introduce a new logic of changing/not-changing other block indents in response of changing current block indent. Also, if...
@CatHood0 , thanks, #2146 looks cool. But how does it solve the issue? Should I use `customLeadingBlockBuilder` to configure ordered lists somehow?
By the way, for some reason this looks weird (the numeration starts with 2): ``` a. text 2. next ``` while the indented version is ok (the numeration starts with...
> This should be fixed now (as far i know and i test) Do you mean that you have ``` a. text 1. next ``` instead?
Another related question: does #2146 allow to change numbering style for ordered lists? Personally, I'd like to have "1", "A", "a", "I", "i" (as in HTML) for indents 1-5. But...
Basically just indenting the first item causes the problem: [untitled.webm](https://github.com/user-attachments/assets/f892d4e4-7fda-4f78-ba90-2f493c17aed0)
It looks like to paste plain text one should disable the following code blocks from quill_controller.dart: ``` if (await _pasteHTML()) { updateEditor?.call(); return true; } ``` ``` _applyPasteStyleAndEmbed(insertedText, index, containsEmbed);...
Indeed, Android keyboards (though, probably no all) allow to paste as plain text, as it in fact stored in the clipboard. So, it's some kind of an option too: "Paste"...
Thanks, I'm able to change clipboard plugins by adding/removing `FlutterQuillExtensions.useSuperClipboardPlugin`, `ClipboardService` instance in the code confirms it. However, for some reason I can't reproduce pasting formatted text copied from the...