-
Type:
Documentation task
-
Resolution: Won't fix
-
Priority:
Trivial
-
None
-
Affects Version/s: 3.2.10rc1
-
Component/s: Documentation (D)
-
None
the macro function page has this example :
{{ITEM.VALUE}.regsub("([1-9]+", "Problem ID: \1")}
it seems to be missing the closing parenthesis in the capture group, i'd have expected this instead :
{{ITEM.VALUE}.regsub("([1-9]+)", "Problem ID: \1")}