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

@@ -53,7 +53,7 @@
[["]", null]]
], closing, escapes);
}
if (stream.match(/\-\>\w/, false)) {
if (stream.match(/^->\w/, false)) {
// Match object operator
state.tokenize = matchSequence([
[["->", null]],
@@ -106,7 +106,7 @@
},
"<": function(stream, state) {
var before;
if (before = stream.match(/<<\s*/)) {
if (before = stream.match(/^<<\s*/)) {
var quoted = stream.eat(/['"]/);
stream.eatWhile(/[\w\.]/);
var delim = stream.current().slice(before[0].length + (quoted ? 2 : 1));