Closed
Description
Apparently ^{{[.\s]*}}$
regex pattern is not correctly applied by the library. Inside JSON this pattern should be represented like "pattern": "^{{[.\\s]*}}$"
due to JSON escaping.
Still, when using it I still get validation error that prints the pattern using the unescaped value, which makes me believe that the string was not loaded correctly.
"{{ foo\n bar }}" does not match '^{{[.\\s]*}}$'
Python does not add extra escapes for \s
, so it should be a loading issue?
$ python -c "print('a\sb')"
a\sb
Metadata
Metadata
Assignees
Labels
No labels