mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-15 00:40:27 +00:00
10 lines
115 B
Go
10 lines
115 B
Go
|
//+build gofuzz
|
||
|
|
||
|
package markdown
|
||
|
|
||
|
func Fuzz(data []byte) int {
|
||
|
md := New(HTML(true))
|
||
|
md.Parse(data)
|
||
|
return 1
|
||
|
}
|