The below program panics: `package main import ( "github.com/russross/blackfriday/v2" ) func main() { input := ": \n\n0\n00" blackfriday.Run([]byte(input)) }` The Program out:  The bug was found with the help of [go-fuzz](https://github.com/dvyukov/go-fuzz).
The below program panics:
`package main
import (
"github.com/russross/blackfriday/v2"
)
func main() {
input := ": \n\n0\n00"
blackfriday.Run([]byte(input))
}`
The Program out:

The bug was found with the help of go-fuzz.