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
The readme says the regex strings are the source of truth, however some of the regex patterns do not properly convey the characters that are allowed at particular positions.
For example, the pattern to match a nested primitive label is currently <([^>]+)>, but it is known that the characters <>%{}| cannot be present within a label, therefore the pattern should be something like <([^<>%{}\|]+)>
The text was updated successfully, but these errors were encountered:
The readme says the regex strings are the source of truth, however some of the regex patterns do not properly convey the characters that are allowed at particular positions.
For example, the pattern to match a nested primitive label is currently
<([^>]+)>
, but it is known that the characters<>%{}|
cannot be present within a label, therefore the pattern should be something like<([^<>%{}\|]+)>
The text was updated successfully, but these errors were encountered: