-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
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.