{"id":28454514,"url":"https://github.com/fleather-editor/parchment_delta","last_synced_at":"2025-07-15T18:43:32.037Z","repository":{"id":217084223,"uuid":"743057270","full_name":"fleather-editor/parchment_delta","owner":"fleather-editor","description":"Simple and expressive format for describing rich-text content created for Quill.js editor.","archived":false,"fork":false,"pushed_at":"2024-08-09T20:35:20.000Z","size":97,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-14T00:45:21.994Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fleather-editor.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-14T07:25:18.000Z","updated_at":"2025-04-09T11:45:17.000Z","dependencies_parsed_at":"2024-01-14T13:36:52.392Z","dependency_job_id":"2b52ee08-5e6e-4ffe-934e-22ccf2fe9db6","html_url":"https://github.com/fleather-editor/parchment_delta","commit_stats":null,"previous_names":["fleather-editor/quill-delta","fleather-editor/parchment_delta"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fleather-editor/parchment_delta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleather-editor%2Fparchment_delta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleather-editor%2Fparchment_delta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleather-editor%2Fparchment_delta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleather-editor%2Fparchment_delta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fleather-editor","download_url":"https://codeload.github.com/fleather-editor/parchment_delta/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleather-editor%2Fparchment_delta/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265451544,"owners_count":23767776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-06T19:14:34.138Z","updated_at":"2025-07-15T18:43:32.029Z","avatar_url":"https://github.com/fleather-editor.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![build](https://github.com/fleather-editor/parchment-delta/actions/workflows/build.yml/badge.svg)](https://github.com/fleather-editor/parchment-delta/actions/workflows/build.yml) [![codecov](https://codecov.io/gh/fleather-editor/parchment_delta/graph/badge.svg?token=9JDVTZL4VA)](https://codecov.io/gh/fleather-editor/parchment_delta)\n\nImplementation of Quill editor Delta format in Dart. Refer to official\n[documentation][] for more details.\n\n[documentation]: https://quilljs.com/docs/delta/\n\n## Usage\n\n```dart\nimport 'package:parchment_delta/parchment_delta.dart';\n\nvoid main() {\n  var doc = new Delta()..insert('Hello world', {'h': '1'});\n  var change = new Delta()\n    ..retain(6)\n    ..delete(5)\n    ..insert('Earth');\n  var result = doc.compose(change);\n  print('Original document:\\n$doc\\n');\n  print('Change:\\n$change\\n');\n  print('Updated document:\\n$result\\n');\n\n  /// Prints:\n  ///\n  ///     Original document:\n  ///     ins⟨Hello world⟩ + {h: 1}\n  ///\n  ///     Change:\n  ///     ret⟨6⟩\n  ///     ins⟨Earth⟩\n  ///     del⟨5⟩\n  ///\n  ///     Updated document:\n  ///     ins⟨Hello ⟩ + {h: 1}\n  ///     ins⟨Earth⟩\n}\n```\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker][tracker].\n\n[tracker]: https://github.com/fleather-editor/parchment-delta/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffleather-editor%2Fparchment_delta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffleather-editor%2Fparchment_delta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffleather-editor%2Fparchment_delta/lists"}