1
0
mirror of https://github.com/danog/blackfriday.git synced 2024-11-27 04:24:41 +01:00

remove check that brace is > 0

This commit is contained in:
Nat Welch 2015-12-05 02:00:36 +00:00
parent c1d4a77100
commit 1bb1fa9e95

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
}