Skip to content

Commit

Permalink
Fix parsing end column when first column has space padding. (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdappollonio authored May 19, 2022
1 parent e8dca49 commit f4a9b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabloid/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
)

var rePadding = regexp.MustCompile(` {3,}`)
var rePadding = regexp.MustCompile(` {3,}\b`)

const endOfLine = -1

Expand Down

0 comments on commit f4a9b25

Please sign in to comment.