remove check that brace is > 0

pull/222/head
Nat Welch 2015-12-05 02:00:36 +00:00
parent c1d4a77100
commit 1bb1fa9e95
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ func link(p *parser, out *bytes.Buffer, data []byte, offset int) int {
} }
} }
if i >= len(data) || brace > 0 { if i >= len(data) {
return 0 return 0
} }