mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-28 22:37:32 +08:00
Add attributions to Delta-related packages (#324)
This commit is contained in:
parent
da64f51589
commit
a8073ceac1
2 changed files with 9 additions and 4 deletions
|
|
@ -3,8 +3,10 @@
|
|||
*
|
||||
* See `Livebook.Delta` for more details.
|
||||
*
|
||||
* Also see https://github.com/quilljs/delta
|
||||
* for a complete implementation of the Delta specification.
|
||||
* An implementation of the full Delta specification is available
|
||||
* in the official quill-delta package (https://github.com/quilljs/delta)
|
||||
* licensed under MIT. Our version is based on that package,
|
||||
* but simplified to match our non rich-text use case.
|
||||
*/
|
||||
export default class Delta {
|
||||
constructor(ops = []) {
|
||||
|
|
|
|||
|
|
@ -13,8 +13,11 @@ defmodule Livebook.Delta do
|
|||
# need to work with plain-text, so we use a subset of the specification
|
||||
# with operations listed in `Livebook.Delta.Operation`.
|
||||
#
|
||||
# Also see https://hexdocs.pm/text_delta/TextDelta.html
|
||||
# for a complete implementation of the Delta specification.
|
||||
# An implementation of the full Delta specification is available
|
||||
# in the :text_delta package (https://github.com/deltadoc/text_delta)
|
||||
# by Konstantin Kudryashov under the MIT license. This module builds
|
||||
# directly on that package, and is simplified to better fit our
|
||||
# not rich-text use case.
|
||||
|
||||
defstruct ops: []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue