Rename to quill_html_converter

pull/1523/head
Ellet 1 year ago
parent bd51bf8afa
commit 3448d7abd9
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 2
      README.md
  2. 2
      example/lib/pages/home_page.dart
  3. 4
      example/pubspec.yaml
  4. 2
      packages/README.md
  5. 0
      packages/quill_html_converter/.gitignore
  6. 0
      packages/quill_html_converter/.metadata
  7. 0
      packages/quill_html_converter/CHANGELOG.md
  8. 0
      packages/quill_html_converter/LICENSE
  9. 0
      packages/quill_html_converter/README.md
  10. 0
      packages/quill_html_converter/analysis_options.yaml
  11. 0
      packages/quill_html_converter/delta_markdown
  12. 2
      packages/quill_html_converter/lib/quill_html_converter.dart
  13. 6
      packages/quill_html_converter/pubspec.yaml
  14. 0
      packages/quill_html_converter/pubspec_overrides.yaml.g
  15. 0
      packages/quill_html_converter/test/quill_html_converter.dart
  16. 2
      scripts/disable_local_dev.sh
  17. 2
      scripts/enable_local_dev.sh

@ -330,7 +330,7 @@ it to other formats such as HTML in order to publish it, or send an email.
You have two options:
1. Using [flutter_quill_html](./packages/flutter_quill_html/) to convert to/from HTML, the package is not ready yet
1. Using [quill_html_converter](./packages/quill_html_converter/) to convert to/from HTML, the package is not ready yet
2. Another option is to use
[vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html) to convert your document
to HTML. This package has full support for all Quill operations - including images, videos, formulas,

@ -15,10 +15,10 @@ import 'package:flutter_quill/flutter_quill.dart';
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart';
import 'package:flutter_quill_extensions/logic/services/image_picker/image_picker.dart';
import 'package:flutter_quill_extensions/presentation/embeds/widgets/image.dart';
import 'package:flutter_quill_html/flutter_quill_html.dart';
import 'package:image_cropper/image_cropper.dart';
import 'package:path/path.dart' as path;
import 'package:path_provider/path_provider.dart';
import 'package:quill_html_converter/quill_html_converter.dart';
import '../widgets/time_stamp_embed_widget.dart';
import 'read_only_page.dart';

@ -19,8 +19,8 @@ dependencies:
file_picker: ^6.1.1
flutter_quill: ^8.5.1
flutter_quill_extensions: ^0.6.7
flutter_quill_html:
path: ../packages/flutter_quill_html
quill_html_converter:
path: ../packages/quill_html_converter
path: ^1.8.3
desktop_drop: ^0.4.4
image_cropper: ^5.0.0

@ -9,4 +9,4 @@ that might be outside of the packages main purpose
- [Packages](#packages)
## Packages
- [flutter_quill_html](./flutter_quill_html/)
- [quill_html_converter](./quill_html_converter/)

@ -1,4 +1,4 @@
library flutter_quill_html;
library quill_html_converter;
import 'dart:convert' show jsonDecode;

@ -1,8 +1,8 @@
name: flutter_quill_html
name: quill_html_converter
description: A extension for flutter_quill package to add support for dealing with conversion to/from html
version: 0.0.1-experimental.1
homepage: https://github.com/singerdmx/flutter-quill/tree/master/packages/flutter_quill_html
repository: https://github.com/singerdmx/flutter-quill/tree/master/packages/flutter_quill_html
homepage: https://github.com/singerdmx/flutter-quill/tree/master/packages/quill_html_converter
repository: https://github.com/singerdmx/flutter-quill/tree/master/packages/quill_html_converter
topics:
- ui

@ -20,7 +20,7 @@ rm flutter_quill_test/pubspec_overrides.yaml
echo ""
echo "Disable local development for all the other packages..."
rm packages/flutter_quill_html/pubspec_overrides.yaml
rm packages/quill_html_converter/pubspec_overrides.yaml
echo ""

@ -20,7 +20,7 @@ cp flutter_quill_test/pubspec_overrides.yaml.g flutter_quill_test/pubspec_overri
echo ""
echo "Enable local development for all the other packages..."
cp packages/flutter_quill_html/pubspec_overrides.yaml.g packages/flutter_quill_html/pubspec_overrides.yaml
cp packages/quill_html_converter/pubspec_overrides.yaml.g packages/quill_html_converter/pubspec_overrides.yaml
echo ""

Loading…
Cancel
Save