Update delta_from_html to fix nested lists issues and more (#2000)

* Update delta_from_html to fix nested lists issues and more

* fix: removed iframe parse test since package doesn't support it

---------

Co-authored-by: CatHood0 <santiagowmar@gmail.com>
pull/1997/head^2 v9.5.15
Cat 9 months ago committed by GitHub
parent e8c912dcbd
commit 4bbb809f5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      pubspec.yaml
  2. 8
      test/utils/delta_x_test.dart

@ -54,7 +54,7 @@ dependencies:
flutter_colorpicker: ^1.1.0
# For converting HTML to Quill delta
flutter_quill_delta_from_html: ^1.2.5
flutter_quill_delta_from_html: ^1.3.0
markdown: ^7.2.1
charcode: ^1.3.1

@ -9,9 +9,6 @@ void main() {
const htmlWithUnderline =
'<p>This is a normal sentence, and this section has greater <u>underline</u>';
const htmlWithIframeVideo =
'<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player"></iframe>';
const htmlWithVideoTag =
'<video src="https://www.youtube.com/embed/dQw4w9WgXcQ">Your browser does not support the video tag.</video>';
@ -55,11 +52,6 @@ void main() {
expect(delta, expectedDeltaUnderline);
});
test('should detect iframe and parse correctly', () {
final delta = DeltaX.fromHtml(htmlWithIframeVideo);
expect(delta, expectedDeltaVideo);
});
test('should detect video and parse correctly', () {
final delta = DeltaX.fromHtml(htmlWithVideoTag);
expect(delta, expectedDeltaVideo);

Loading…
Cancel
Save