package quill

  1. Overview
  2. Docs
Interactive notebook for OCaml data science

Install

dune-project
 Dependency

Authors

Maintainers

Sources

raven-1.0.0.alpha2.tbz
sha256=93abc49d075a1754442ccf495645bc4fdc83e4c66391ec8aca8fa15d2b4f44d2
sha512=5eb958c51f30ae46abded4c96f48d1825f79c7ce03f975f9a6237cdfed0d62c0b4a0774296694def391573d849d1f869919c49008acffca95946b818ad325f6f

doc/quill.editor/Quill_editor/Render_tree/index.html

Module Quill_editor.Render_treeSource

Sourcetype block_status = [
  1. | `Idle
  2. | `Running
]
Sourcetype selection_status = [
  1. | `None
  2. | `Caret
  3. | `Range_single
  4. | `Range_start
  5. | `Range_end
  6. | `Range_middle
]
Sourcetype block = {
  1. id : int;
  2. focused : bool;
  3. status : block_status;
  4. selection : selection_status;
  5. content : Document.block_content;
}
Sourcetype document = block list
Sourcetype diff =
  1. | Added of block
  2. | Removed of block
  3. | Updated of {
    1. before : block;
    2. after : block;
    }
Sourceval of_state : State.t -> document
Sourceval diff : document -> document -> diff list