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
Lines are separated with `\r\n` on windows, rather than just `\n`. So we
need to match both kinds of separator in order to be platform
independant. As we don't require the xml elements to be on separate
lines and `\s` already matches both `\r` and `\n` we can just let `\s*`
match all the line separators as well as any indentation characters.
0 commit comments