JS: Work around an issue with overlay-invariance

This commit is contained in:
Asger F
2025-11-24 13:33:03 +01:00
parent 962c128f20
commit 8731eee10e

View File

@@ -33,7 +33,7 @@ module Templating {
*/
bindingset[prefix]
string getDelimiterMatchingRegexpWithPrefix(string prefix) {
result = "(?s)" + prefix + "(" + concat("\\Q" + getADelimiter() + "\\E", "|") + ").*"
result = "(?s)" + prefix + "(" + strictconcat("\\Q" + getADelimiter() + "\\E", "|") + ").*"
}
/** A placeholder tag for a templating engine. */