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 way we are splitting the document up when parsing is done with this regular expression:
var re = /(?:")([^"]+)(?:")|([^\s"]+)(?=\s+|$)/g;
Using this will cause a bug when you have a double quote on a line and dont terminate it. When doing so, it will not split whats inside the quotes.
The text was updated successfully, but these errors were encountered:
The way we are splitting the document up when parsing is done with this regular expression:
var re = /(?:")([^"]+)(?:")|([^\s"]+)(?=\s+|$)/g;
Using this will cause a bug when you have a double quote on a line and dont terminate it. When doing so, it will not split whats inside the quotes.
The text was updated successfully, but these errors were encountered: