From 6814c500c693aabd71e219cf27602f467d7873a0 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 22 Jan 2020 16:24:56 +0000 Subject: Fix up boxtotxt tool --- boxtotxt/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boxtotxt/main.go b/boxtotxt/main.go index d313aa0..058eb05 100644 --- a/boxtotxt/main.go +++ b/boxtotxt/main.go @@ -34,6 +34,9 @@ func main() { if len(s) < 1 { continue } + if s[0] == "\t" { + continue + } fmt.Printf("%s", s[0]) } -- cgit v1.2.1-24-ge1ad