From 77ea1d06bef752836b8423d821583aff7ad714fd Mon Sep 17 00:00:00 2001 From: Ellet <73608287+EchoEllet@users.noreply.github.com> Date: Tue, 9 Jul 2024 20:59:38 +0300 Subject: [PATCH] docs(html): update outdated code --- quill_html_converter/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quill_html_converter/README.md b/quill_html_converter/README.md index 032688d8..41b34c66 100644 --- a/quill_html_converter/README.md +++ b/quill_html_converter/README.md @@ -32,9 +32,7 @@ import 'package:quill_html_converter/quill_html_converter.dart'; final html = _controller.document.toDelta().toHtml(); // Load Delta document using HTML -_controller.document = Document.fromDelta( - Document.fromHtml(html).toDelta(), -); +_controller.document = Document.fromHtml(html); ``` ## Additional information