Fixed delimiter processing.
h3rald h3rald@h3rald.com
Sat, 18 Nov 2017 18:39:55 +0100
1 files changed,
3 insertions(+),
0 deletions(-)
jump to
M
hastyscribe.nim
→
hastyscribe.nim
@@ -185,6 +185,9 @@ var f:File
discard f.open(path) # Ignore headers try: + discard f.readLine(s) + if not s.startsWith("----"): + delimiter = 2 while f.readLine(s): if delimiter >= 2: contents &= s&"\n"