You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suresh 7185b2d1c4
Removed multer
3 years ago
..
README.md Removed multer 3 years ago
attr_step.ts Removed multer 3 years ago
index.ts Removed multer 3 years ago
map.ts Removed multer 3 years ago
mark.ts Removed multer 3 years ago
mark_step.ts Removed multer 3 years ago
replace.ts Removed multer 3 years ago
replace_step.ts Removed multer 3 years ago
step.ts Removed multer 3 years ago
structure.ts Removed multer 3 years ago
transform.ts Removed multer 3 years ago

README.md

This module defines a way of modifying documents that allows changes to be recorded, replayed, and reordered. You can read more about transformations in the guide.

Steps

Transforming happens in Steps, which are atomic, well-defined modifications to a document. Applying a step produces a new document.

Each step provides a change map that maps positions in the old document to position in the transformed document. Steps can be inverted to create a step that undoes their effect, and chained together in a convenience object called a Transform.

@Step @StepResult @ReplaceStep @ReplaceAroundStep @AddMarkStep @RemoveMarkStep @AddNodeMarkStep @RemoveNodeMarkStep @AttrStep

Position Mapping

Mapping positions from one document to another by running through the step maps produced by steps is an important operation in ProseMirror. It is used, for example, for updating the selection when the document changes.

@Mappable @MapResult @StepMap @Mapping

Document transforms

Because you often need to collect a number of steps together to effect a composite change, ProseMirror provides an abstraction to make this easy. State transactions are a subclass of transforms.

@Transform

The following helper functions can be useful when creating transformations or determining whether they are even possible.

@replaceStep @liftTarget @findWrapping @canSplit @canJoin @joinPoint @insertPoint @dropPoint