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 regex for image src matches for single and double opening quotes:
`([\'"])`
The corresponding matching for non-closing characters is implemented for double quotes only:
([^"]+)
This change adds a non-greedy regex `.+?` which matches for as few characters as possbile before the "correspondingly matched opening quote" `\\1` appears.
0 commit comments