summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-01-22 16:24:56 +0000
committerNick White <git@njw.name>2020-01-22 16:24:56 +0000
commit6814c500c693aabd71e219cf27602f467d7873a0 (patch)
tree3f045113a8c4e0ff7d013452d43475eee70c32a7
parent632a149df0196f0f057fa4d552aa28d22901bcda (diff)
Fix up boxtotxt tool
-rw-r--r--boxtotxt/main.go3
1 files changed, 3 insertions, 0 deletions
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])
}