You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additional context
The source of the bug is [\\w-.]. When modified to [\\w-\\.] everything works accordingly. Before doing a PR fixing this problem, I wanted to be sure I didn't miss something about how Javascript regexs work.
The text was updated successfully, but these errors were encountered:
Platform
MacOS 12.7 with python 3.10.
Describe the bug
The Wagtail DOM regexs
[style*='images/']
,img[src*='images/']
, etc. Are not compiling in python 3.10.To Reproduce
Expected behavior
The regex should compile.
Additional context
The source of the bug is
[\\w-.]
. When modified to[\\w-\\.]
everything works accordingly. Before doing a PR fixing this problem, I wanted to be sure I didn't miss something about how Javascript regexs work.The text was updated successfully, but these errors were encountered: