Update flutter_quill_delta_from_html in pubspec.yaml #1988
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
I know that it was just a few hours ago that I added this dependency, however, I have updated it so that not only does it have better support for server-side conversions, but I also fixed certain errors and added better support for different attributes such as literals.
align
, ordirection
For example, if in the current version you try to pass an
HTML
like:will come out:
With version 1.2.1 it will be released:
Even in the current version (1.1.8) there is a problem with certain inline attributes, for example, if you use an
HTML
like:The output will be:
Rather:
And also added support for
<p dir="rtl">direction</p>
which would have an output similar to:As you can see, version 1.2.1 fixes several problems that may bother several users and adds new attributes that can be useful if you do not always use inline attributes in the "style" of the html tags (
<span style=" ...styles">
)Checklist
CHANGELOG.md
nor the package version inpubspec.yaml
files../scripts/before_push.sh
and it all passed successfullyBreaking Change
Does your PR require developers to manually update their apps to accommodate your change?
!
in the title as explained in Conventional Commits).