Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellet committed Dec 8, 2023
2 parents 6bbf680 + 1d58185 commit cd441e8
Show file tree
Hide file tree
Showing 36 changed files with 1,785 additions and 862 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: flutter pub get -C flutter_quill_test

- name: Install quill_html_converter dependencies
run: flutter pub get -C packages/quill_html_converter
run: flutter pub get -C quill_html_converter

- name: Run flutter analysis
run: flutter analyze
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:

- name: Publish quill_html_converter
run: flutter pub publish --force
working-directory: ./packages/quill_html_converter/
working-directory: ./quill_html_converter/
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,5 @@ pubspec.lock
# For local development
pubspec_overrides.yaml

old_example

# A directory where you put all of your local things that you don't want to push
.flutter-quill
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ it to other formats such as HTML to publish it, or send an email.

You have two options:

1. Using [quill_html_converter](./packages/quill_html_converter/) to convert to HTML, the package can convert the Quill delta to HTML well
1. Using [quill_html_converter](./quill_html_converter/) to convert to HTML, the package can convert the Quill delta to HTML well
(it uses [vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html)), it just a handy extension to do it more quickly
1. Another option is to use
[vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html) to convert your document
Expand Down
7 changes: 7 additions & 0 deletions dart_quill_delta/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://dart.dev/guides/libraries/private-files
# Created by `dart pub`
.dart_tool/

# Avoid committing pubspec.lock for library packages; see
# https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock
3 changes: 3 additions & 0 deletions dart_quill_delta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.0.1

* Initial version.
File renamed without changes.
2 changes: 2 additions & 0 deletions dart_quill_delta/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Dart Quill Delta
A port of [quill-js-delta](https://github.com/quilljs/delta/) from typescript to dart
30 changes: 30 additions & 0 deletions dart_quill_delta/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.

include: package:lints/recommended.yaml

# Uncomment the following section to specify additional rules.

# linter:
# rules:
# - camel_case_types

# analyzer:
# exclude:
# - path/to/excluded/files/**

# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints

# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options
1 change: 1 addition & 0 deletions dart_quill_delta/example/dart_quill_delta_example.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
void main() {}
5 changes: 5 additions & 0 deletions dart_quill_delta/lib/dart_quill_delta.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
library;

export './src/delta/delta.dart';
export './src/delta/delta_iterator.dart';
export './src/operation/operation.dart';
Loading

0 comments on commit cd441e8

Please sign in to comment.