We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c6a541 commit ad63ae0Copy full SHA for ad63ae0
1 file changed
plugins/ckeditor5-woltlab-smiley/src/woltlabsmileyui.ts
@@ -442,7 +442,7 @@ export function getRegexExp(): RegExp {
442
const openAfterCharacters = env.features.isRegExpUnicodePropertySupported
443
? "\\p{Ps}\\p{Pi}\"'"
444
: "\\(\\[{\"'";
445
- const pattern = `(?:^|[ ${openAfterCharacters}])(:)([a-z][a-z0-9]*+(?:_[a-z0-9]+)*)$`;
+ const pattern = `(?:^|[ ${openAfterCharacters}])(:)([a-z][a-z0-9]*(?:_[a-z0-9]+)*)$`;
446
return new RegExp(pattern, "u");
447
}
448
0 commit comments