summaryrefslogtreecommitdiff
path: root/tools/gencode.js
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-06 17:02:27 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-06 17:02:27 +0100
commitc31e8c8052386de10ef85626f508d608c6a55df1 (patch)
tree866e60b8a17657a14894c75e71aeb47e31891ddc /tools/gencode.js
parent992163947dfc755b3e52e17442c18a10bbbcb1cb (diff)
downloadvotes-for-women-c31e8c8052386de10ef85626f508d608c6a55df1.tar.gz
events WIP
Diffstat (limited to 'tools/gencode.js')
-rw-r--r--tools/gencode.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/gencode.js b/tools/gencode.js
index e2522e7..39c87bd 100644
--- a/tools/gencode.js
+++ b/tools/gencode.js
@@ -30,7 +30,9 @@ for (let line of fs.readFileSync("events.txt", "utf-8").split("\n")) {
continue
if (line === "EOF")
break
- line = line.split(" ")
+ // line = line.split(" ")
+ // split by spaces unless those spaces are within double quotes.
+ line = line.match(/(?:[^\s"]+|"[^"]*")+/g)
switch (line[0]) {
case "CARD":
if (first++) {