MatcherPattern (engine/view)
@ckeditor/ckeditor5-engine/src/view/matcher
An entity that is a valid pattern recognized by a matcher. MatcherPattern
is used by Matcher
to recognize
if a view element fits in a group of view elements described by the pattern.
MatcherPattern
can be given as a String
, a RegExp
, an Object
or a Function
.
If MatcherPattern
is given as a String
or RegExp
, it will match any view element that has a matching name:
If MatcherPattern
is given as an Object
, all the object's properties will be matched with view element properties.
If the view element does not meet all of the object's pattern properties, the match will not happen.
Available Object
matching properties:
Matching view element:
Matching view element attributes:
Matching view element styles:
Matching view element classes:
Pattern can combine multiple properties allowing for more complex view element matching:
If MatcherPattern
is given as a Function
, the function takes a view element as a first and only parameter and
the function should decide whether that element matches. If so, it should return what part of the view element has been matched.
Otherwise, the function should return null
. The returned result will be included in match
property of the object
returned by match
call.
MatcherPattern
is defined in a way that it is a superset of ElementDefinition
,
that is, every ElementDefinition
also can be used as a MatcherPattern
.
Filtering
Properties
-
View element's attributes to match.
-
View element's classes to match.
-
View element name to match.
-
View element's styles to match.
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.