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 pattern (.*)\s*--> will always put all whitespace in the capturing group as *is greedy. To exclude them use (.*?)˜s*--> to make the * non-greedy. Alternatively leave the \s* out.
The text was updated successfully, but these errors were encountered:
mark/pkg/mark/meta.go
Line 45 in 8e16f6f
The pattern
(.*)\s*-->
will always put all whitespace in the capturing group as*
is greedy. To exclude them use(.*?)˜s*-->
to make the*
non-greedy. Alternatively leave the\s*
out.The text was updated successfully, but these errors were encountered: