markdown_quill 0.0.1 markdown_quill: ^0.0.1 copied to clipboard
Convert between quill (delta) format and markdown
Limitation #
Image #
Currently this convertor doesn't support image alts, only image src will be retained
Block attributes exclusivity #
flutter_quill block attributes have restrictions on how they can be combined.
These block attributes are executive and cannot be combined:
- Header
- List
- Code Block
- Block Quote
if the input markdown is:
> # Foo
> bar
> baz
it will be treated as
> Foo
> bar
> baz
TODO #
- Improve the output of
DeltaToMarkdown