1 repo
Data structures that represent document changes as a sequence of atomic operations.
Distinguishing note: Specifically covers delta-based serialization formats for document state, distinct from general data diffing.
Explore 1 awesome GitHub repository matching software engineering & architecture · Operational Transformation Formats. Refine with filters or upvote what's useful.
Quill is a modular, web-based rich text editor designed for structured content authoring. It provides a comprehensive toolkit for building tailored editing experiences, allowing developers to manage document state, handle user input, and synchronize content through a predictable, serializable data model. The editor distinguishes itself through a custom document abstraction that maps the browser DOM to a structured tree of nodes, ensuring consistent behavior across different environments. It utilizes an operational change tracking system that represents all document modifications as a sequence
Content is stored as a sequence of insert, delete, and retain operations to provide a predictable and serializable document model.