ckeditor 5.60.0

This commit is contained in:
zadam
2021-04-06 22:16:34 +02:00
parent c43b20ec2b
commit f739dbfe87
60 changed files with 537 additions and 1592 deletions

View File

@@ -45,7 +45,7 @@ CodeMirror.defineMode("oz", function (conf) {
}
// Special [] keyword
if (stream.match(/(\[])/)) {
if (stream.match('[]')) {
return "keyword"
}
@@ -130,7 +130,7 @@ CodeMirror.defineMode("oz", function (conf) {
return "operator";
}
// If nothing match, we skip the entire alphanumerical block
// If nothing match, we skip the entire alphanumeric block
stream.eatWhile(/\w/);
return "variable";