SchemaContextDefinition (engine/model)
@ckeditor/ckeditor5-engine/src/model/schema
The definition of a schema context.
Contexts can be created in multiple ways:
- By defining a node – in this cases this node and all its ancestors will be used.
- By defining a position in the document – in this case all its ancestors will be used.
- By defining an array of nodes – in this case this array defines the entire context.
- By defining a name of node - in this case node will be "mocked". It is not recommended because context will be unrealistic (e.g. attributes of these nodes are not specified). However, at times this may be the only way to define the context (e.g. when checking some hypothetical situation).
- By defining an array of node names (potentially, mixed with real nodes) – The same as name of node but it is possible to create a path.
- By defining a
SchemaContext
instance - in this case the same instance as provided will be return.
Examples of context definitions passed to the Schema#checkChild()
method:
All these checkChild()
calls will fire Schema#checkChild
events in which args[ 0 ]
is an instance of the context. Therefore, you can write a listener like this:
Which will log the following:
Note: When using the Schema#checkAttribute()
method
you may want to check whether a text node may have an attribute. A Text
is a
correct way to define a context so you can do this:
But sometimes you want to check whether a text at a given position might've had some attribute,
in which case you can create a context by mixing in an array of elements with a '$text'
string:
Filtering
Every day, we work hard to keep our documentation complete. Have you spotted an outdated information? Is something missing? Please report it via our issue tracker.